diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-10-29 14:33:32 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-11-06 08:47:54 +0100 |
commit | 6896f95b2483e52e717e2c75a4fd24fcb0e14b67 (patch) | |
tree | 11201cf08f6effaffb25dcf71eb2ff03726a3736 /libavformat | |
parent | 874792641ea4d52e0e03835da630565e63cc1d1f (diff) | |
download | ffmpeg-6896f95b2483e52e717e2c75a4fd24fcb0e14b67.tar.gz |
vorbis_parser: add an AV prefix to VorbisParseContext
This is done in preparation for making it public.
Diffstat (limited to 'libavformat')
-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 6bd1411cdb..27f04bf261 100644 --- a/libavformat/oggparsevorbis.c +++ b/libavformat/oggparsevorbis.c @@ -208,7 +208,7 @@ int ff_vorbis_comment(AVFormatContext *as, AVDictionary **m, struct oggvorbis_private { unsigned int len[3]; unsigned char *packet[3]; - VorbisParseContext vp; + AVVorbisParseContext vp; int64_t final_pts; int final_duration; }; |