mirror of
https://github.com/datarhei/restreamer.git
synced 2025-12-11 22:14:02 +01:00
39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c
|
|
index 2e9448e..bbae300 100644
|
|
--- a/fftools/ffmpeg.c
|
|
+++ b/fftools/ffmpeg.c
|
|
@@ -1635,8 +1635,7 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
|
|
{
|
|
AVBPrint buf, buf_script;
|
|
OutputStream *ost;
|
|
- AVFormatContext *oc;
|
|
- int64_t total_size;
|
|
+ int64_t total_size = 0;
|
|
AVCodecContext *enc;
|
|
int frame_number, vid, i;
|
|
double bitrate;
|
|
@@ -1664,13 +1663,6 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
|
|
|
|
t = (cur_time-timer_start) / 1000000.0;
|
|
|
|
-
|
|
- oc = output_files[0]->ctx;
|
|
-
|
|
- total_size = avio_size(oc->pb);
|
|
- if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too
|
|
- total_size = avio_tell(oc->pb);
|
|
-
|
|
vid = 0;
|
|
av_bprint_init(&buf, 0, AV_BPRINT_SIZE_AUTOMATIC);
|
|
av_bprint_init(&buf_script, 0, AV_BPRINT_SIZE_AUTOMATIC);
|
|
@@ -1745,6 +1737,9 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
|
|
ost->st->time_base, AV_TIME_BASE_Q));
|
|
if (is_last_report)
|
|
nb_frames_drop += ost->last_dropped;
|
|
+
|
|
+ total_size += ost->data_size;
|
|
+ total_size += ost->enc_ctx->extradata_size;
|
|
}
|
|
|
|
secs = FFABS(pts) / AV_TIME_BASE;
|