mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-07 09:41:32 +08:00
timecode: show frame rate when invalid.
This commit is contained in:

committed by
Clément Bœsch

parent
1894f88546
commit
1f68be4764
@@ -164,7 +164,8 @@ static int check_timecode(void *log_ctx, AVTimecode *tc)
|
||||
case 60: return 0;
|
||||
|
||||
default:
|
||||
av_log(log_ctx, AV_LOG_ERROR, "Timecode frame rate not supported\n");
|
||||
av_log(log_ctx, AV_LOG_ERROR, "Timecode frame rate %d/%d not supported\n",
|
||||
tc->rate.num, tc->rate.den);
|
||||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user