mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-14 00:58:38 +02:00
Call do_video_stats when duplicating frame
When multiple frame are encoded during vsync, current code only do_video_stats once. This need to do it every frame. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8b63eeb6b1
commit
fcf73f9c01
2
ffmpeg.c
2
ffmpeg.c
@ -963,10 +963,10 @@ static void do_video_out(AVFormatContext *s,
|
|||||||
* flush, we need to limit them here, before they go into encoder.
|
* flush, we need to limit them here, before they go into encoder.
|
||||||
*/
|
*/
|
||||||
ost->frame_number++;
|
ost->frame_number++;
|
||||||
}
|
|
||||||
|
|
||||||
if (vstats_filename && frame_size)
|
if (vstats_filename && frame_size)
|
||||||
do_video_stats(ost, frame_size);
|
do_video_stats(ost, frame_size);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static double psnr(double d)
|
static double psnr(double d)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user