diff options
author | Clément Bœsch <clement.boesch@smartjog.com> | 2012-01-02 11:53:59 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-01-05 20:59:52 +0100 |
commit | 2aa7375a9815bebee6e92566fdd1e61cdc312509 (patch) | |
tree | 18c45ed5c7d6aa0cd51212f5e7dbc3f862470737 /libavcodec/timecode.c | |
parent | a44b63f6c8bee7cb08f4b96408ce4f5a39326097 (diff) | |
download | ffmpeg-2aa7375a9815bebee6e92566fdd1e61cdc312509.tar.gz |
timecode: add avpriv_check_timecode_rate().
Diffstat (limited to 'libavcodec/timecode.c')
-rw-r--r-- | libavcodec/timecode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/timecode.c b/libavcodec/timecode.c index 2f7bd64e39..00b40b7bcf 100644 --- a/libavcodec/timecode.c +++ b/libavcodec/timecode.c @@ -55,7 +55,7 @@ uint32_t avpriv_framenum_to_smpte_timecode(unsigned frame, int fps, int drop) ( (frame / (fps * 3600) % 24)) % 10; // units of hours } -static int check_timecode_rate(void *avcl, AVRational rate, int drop) +int avpriv_check_timecode_rate(void *avcl, AVRational rate, int drop) { int fps; @@ -109,7 +109,7 @@ int avpriv_init_smpte_timecode(void *avcl, struct ff_timecode *tc) tc->drop = c != ':'; // drop if ';', '.', ... - ret = check_timecode_rate(avcl, tc->rate, tc->drop); + ret = avpriv_check_timecode_rate(avcl, tc->rate, tc->drop); if (ret < 0) return ret; |