mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
libav: fix confusing 'insane framerate' debug log message
Usually means no framerate / variable framerate. Also the fraction arguments were swapped.
This commit is contained in:
parent
490e98913d
commit
e5ceb287d3
1 changed files with 2 additions and 2 deletions
|
@ -2442,8 +2442,8 @@ gst_ffmpeg_caps_to_pixfmt (const GstCaps * caps,
|
||||||
context->time_base.den, context->time_base.num,
|
context->time_base.den, context->time_base.num,
|
||||||
1. * context->time_base.den / context->time_base.num);
|
1. * context->time_base.den / context->time_base.num);
|
||||||
} else {
|
} else {
|
||||||
GST_WARNING ("ignoring insane framerate %d/%d",
|
GST_INFO ("ignoring framerate %d/%d (probably variable framerate)",
|
||||||
context->time_base.den, context->time_base.num);
|
context->time_base.num, context->time_base.den);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue