diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-17 08:58:50 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-20 20:57:23 +0200 |
commit | 1fa395e471d563166f3fe3071fce8148e27679a8 (patch) | |
tree | 134da128707ce6c0a1524691a48a2312552d961b /libavformat/oggparsevorbis.c | |
parent | 68d3aec819138183cedb11cd2783a830bc3a3866 (diff) | |
download | ffmpeg-1fa395e471d563166f3fe3071fce8148e27679a8.tar.gz |
lavf: use avpriv_ prefix for ff_new_chapter().
It's used in libavdevice.
Diffstat (limited to 'libavformat/oggparsevorbis.c')
-rw-r--r-- | libavformat/oggparsevorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c index 86951f3e2f..8a406976b5 100644 --- a/libavformat/oggparsevorbis.c +++ b/libavformat/oggparsevorbis.c @@ -45,7 +45,7 @@ static int ogm_chapter(AVFormatContext *as, uint8_t *key, uint8_t *val) if (sscanf(val, "%02d:%02d:%02d.%03d", &h, &m, &s, &ms) < 4) return 0; - ff_new_chapter(as, cnum, (AVRational){1,1000}, + avpriv_new_chapter(as, cnum, (AVRational){1,1000}, ms + 1000*(s + 60*(m + 60*h)), AV_NOPTS_VALUE, NULL); av_free(val); |