diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-06 11:54:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-06 11:58:32 +0100 |
commit | 7ffdc7bef2f9d7e90487f816a97a3496b0639450 (patch) | |
tree | f6318eeb493ae08bbc53eec923ae01171dc00a06 /libavcodec/vorbis_parser.h | |
parent | 44fa2671e0db0bb1a92c365fb3c9c2d1cd7199ca (diff) | |
download | ffmpeg-7ffdc7bef2f9d7e90487f816a97a3496b0639450.tar.gz |
avcodec/export av_vorbis_parse_frame_flags()
The other functions where changed in the previous merge
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vorbis_parser.h')
-rw-r--r-- | libavcodec/vorbis_parser.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/vorbis_parser.h b/libavcodec/vorbis_parser.h index 4af60cf827..086e36475a 100644 --- a/libavcodec/vorbis_parser.h +++ b/libavcodec/vorbis_parser.h @@ -49,8 +49,7 @@ void av_vorbis_parse_free(AVVorbisParseContext **s); /** * Get the duration for a Vorbis packet. * - * avpriv_vorbis_parse_extradata() must have been successfully called prior to - * this in order for a correct duration to be returned. If @p flags is @c NULL, + * If @p flags is @c NULL, * special frames are considered invalid. * * @param s Vorbis parser context @@ -58,8 +57,8 @@ void av_vorbis_parse_free(AVVorbisParseContext **s); * @param buf_size size of the buffer * @param flags flags for special frames */ -int avpriv_vorbis_parse_frame_flags(AVVorbisParseContext *s, const uint8_t *buf, - int buf_size, int *flags); +int av_vorbis_parse_frame_flags(AVVorbisParseContext *s, const uint8_t *buf, + int buf_size, int *flags); /** * Get the duration for a Vorbis packet. |