Commit 63ea8e06 authored by Vittorio Giovara's avatar Vittorio Giovara Committed by Michael Niedermayer

timecode: Support HFR values

parent 8c221482
......@@ -141,7 +141,9 @@ char *av_timecode_make_mpeg_tc_string(char *buf, uint32_t tc25bit)
static int check_fps(int fps)
{
int i;
static const int supported_fps[] = {24, 25, 30, 48, 50, 60};
static const int supported_fps[] = {
24, 25, 30, 48, 50, 60, 100, 120, 150,
};
for (i = 0; i < FF_ARRAY_ELEMS(supported_fps); i++)
if (fps == supported_fps[i])
......
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