summaryrefslogtreecommitdiff
path: root/libavformat/asfdec.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-10-17 08:58:50 +0200
committerAnton Khirnov <anton@khirnov.net>2011-10-20 20:57:23 +0200
commit1fa395e471d563166f3fe3071fce8148e27679a8 (patch)
tree134da128707ce6c0a1524691a48a2312552d961b /libavformat/asfdec.c
parent68d3aec819138183cedb11cd2783a830bc3a3866 (diff)
lavf: use avpriv_ prefix for ff_new_chapter().
It's used in libavdevice.
Diffstat (limited to 'libavformat/asfdec.c')
-rw-r--r--libavformat/asfdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c
index 48ecec78b4..88091a5c9e 100644
--- a/libavformat/asfdec.c
+++ b/libavformat/asfdec.c
@@ -573,7 +573,7 @@ static int asf_read_marker(AVFormatContext *s, int64_t size)
name_len = avio_rl32(pb); // name length
if ((ret = avio_get_str16le(pb, name_len * 2, name, sizeof(name))) < name_len)
avio_skip(pb, name_len - ret);
- ff_new_chapter(s, i, (AVRational){1, 10000000}, pres_time, AV_NOPTS_VALUE, name );
+ avpriv_new_chapter(s, i, (AVRational){1, 10000000}, pres_time, AV_NOPTS_VALUE, name );
}
return 0;