mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
Warn when falling back to unreliable UMF fps tag.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
parent
46eaaad8dd
commit
1816addc4e
1 changed files with 2 additions and 0 deletions
|
|
@ -346,6 +346,8 @@ static int gxf_header(AVFormatContext *s, AVFormatParameters *ap) {
|
|||
avio_skip(pb, 0x30); // payload description
|
||||
fps = fps_umf2avr(avio_rl32(pb));
|
||||
if (!main_timebase.num || !main_timebase.den) {
|
||||
av_log(s, AV_LOG_WARNING, "No FPS track tag, using UMF fps tag."
|
||||
" This might give wrong results.\n");
|
||||
// this may not always be correct, but simply the best we can get
|
||||
main_timebase.num = fps.den;
|
||||
main_timebase.den = fps.num * 2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue