You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
ffmpeg: frame droping due to fps should not be a warning
This reverts part of 41e7e46cac
See: http://thread.gmane.org/gmane.comp.video.ffmpeg.user/51229
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
2
ffmpeg.c
2
ffmpeg.c
@@ -895,7 +895,7 @@ static void do_video_out(AVFormatContext *s,
|
|||||||
nb_frames = FFMIN(nb_frames, ost->max_frames - ost->frame_number);
|
nb_frames = FFMIN(nb_frames, ost->max_frames - ost->frame_number);
|
||||||
if (nb_frames == 0) {
|
if (nb_frames == 0) {
|
||||||
nb_frames_drop++;
|
nb_frames_drop++;
|
||||||
av_log(NULL, AV_LOG_WARNING,
|
av_log(NULL, AV_LOG_VERBOSE,
|
||||||
"*** dropping frame %d from stream %d at ts %"PRId64"\n",
|
"*** dropping frame %d from stream %d at ts %"PRId64"\n",
|
||||||
ost->frame_number, ost->st->index, in_picture->pts);
|
ost->frame_number, ost->st->index, in_picture->pts);
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user