1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

dvenc: dont fail hard if the timecode is invalid

Instead just dont store the timecode
Fixes Ticket2187

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-02-05 22:57:35 +01:00
parent b0635e2fcf
commit f0eacbc760

View File

@ -376,8 +376,8 @@ static int dv_write_header(AVFormatContext *s)
break; break;
} }
} }
if (tcr) if (tcr && av_timecode_init_from_string(&dvc->tc, rate, tcr->value, s) >= 0)
return av_timecode_init_from_string(&dvc->tc, rate, tcr->value, s); return 0;
return av_timecode_init(&dvc->tc, rate, 0, 0, s); return av_timecode_init(&dvc->tc, rate, 0, 0, s);
} }