Commit 1f68be47 authored by Clément Bœsch's avatar Clément Bœsch Committed by Clément Bœsch

timecode: show frame rate when invalid.

parent 1894f885
......@@ -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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment