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/mov.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/mov.c')
-rw-r--r-- | libavformat/mov.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index d93969ce2a..62c3be36a2 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -287,7 +287,7 @@ static int mov_read_chpl(MOVContext *c, AVIOContext *pb, MOVAtom atom) avio_read(pb, str, str_len); str[str_len] = 0; - ff_new_chapter(c->fc, i, (AVRational){1,10000000}, start, AV_NOPTS_VALUE, str); + avpriv_new_chapter(c->fc, i, (AVRational){1,10000000}, start, AV_NOPTS_VALUE, str); } return 0; } @@ -2420,7 +2420,7 @@ static void mov_read_chapters(AVFormatContext *s) } } - ff_new_chapter(s, i, st->time_base, sample->timestamp, end, title); + avpriv_new_chapter(s, i, st->time_base, sample->timestamp, end, title); av_freep(&title); } finish: |