diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-10-29 15:04:23 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-11-06 08:51:25 +0100 |
commit | 5e80fb7ff226f136dbcf3fed00a2966bf8e9bd70 (patch) | |
tree | e82285e196430b371b6efc9c6f3e55c8a1acb220 /libavformat | |
parent | 6896f95b2483e52e717e2c75a4fd24fcb0e14b67 (diff) | |
download | ffmpeg-5e80fb7ff226f136dbcf3fed00a2966bf8e9bd70.tar.gz |
lavc: add a public API for parsing vorbis packets.
It is required by (at least) the ogg demuxer.
Mark the current semi-public apriv API for removal.
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 27f04bf261..323f71d3b4 100644 --- a/libavformat/oggparsevorbis.c +++ b/libavformat/oggparsevorbis.c @@ -30,7 +30,7 @@ #include "libavutil/dict.h" #include "libavcodec/bytestream.h" #include "libavcodec/get_bits.h" -#include "libavcodec/vorbis_parser.h" +#include "libavcodec/vorbis_parser_internal.h" #include "avformat.h" #include "flac_picture.h" #include "internal.h" |