Commit 7ffdc7be authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/export av_vorbis_parse_frame_flags()

The other functions where changed in the previous merge
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 44fa2671
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include "libavutil/version.h" #include "libavutil/version.h"
#define LIBAVCODEC_VERSION_MAJOR 56 #define LIBAVCODEC_VERSION_MAJOR 56
#define LIBAVCODEC_VERSION_MINOR 11 #define LIBAVCODEC_VERSION_MINOR 12
#define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
......
...@@ -210,8 +210,8 @@ static int vorbis_parse_init(AVVorbisParseContext *s, ...@@ -210,8 +210,8 @@ static int vorbis_parse_init(AVVorbisParseContext *s,
return 0; return 0;
} }
int avpriv_vorbis_parse_frame_flags(AVVorbisParseContext *s, const uint8_t *buf, int av_vorbis_parse_frame_flags(AVVorbisParseContext *s, const uint8_t *buf,
int buf_size, int *flags) int buf_size, int *flags)
{ {
int duration = 0; int duration = 0;
...@@ -262,7 +262,7 @@ bad_packet: ...@@ -262,7 +262,7 @@ bad_packet:
int av_vorbis_parse_frame(AVVorbisParseContext *s, const uint8_t *buf, int av_vorbis_parse_frame(AVVorbisParseContext *s, const uint8_t *buf,
int buf_size) int buf_size)
{ {
return avpriv_vorbis_parse_frame_flags(s, buf, buf_size, NULL); return av_vorbis_parse_frame_flags(s, buf, buf_size, NULL);
} }
void av_vorbis_parse_reset(AVVorbisParseContext *s) void av_vorbis_parse_reset(AVVorbisParseContext *s)
...@@ -308,6 +308,11 @@ int avpriv_vorbis_parse_frame(AVVorbisParseContext *s, const uint8_t *buf, ...@@ -308,6 +308,11 @@ int avpriv_vorbis_parse_frame(AVVorbisParseContext *s, const uint8_t *buf,
{ {
return av_vorbis_parse_frame(s, buf, buf_size); return av_vorbis_parse_frame(s, buf, buf_size);
} }
int avpriv_vorbis_parse_frame_flags(AVVorbisParseContext *s, const uint8_t *buf,
int buf_size, int *flags)
{
return av_vorbis_parse_frame_flags(s, buf, buf_size, flags);
}
#endif #endif
#if CONFIG_VORBIS_PARSER #if CONFIG_VORBIS_PARSER
......
...@@ -49,8 +49,7 @@ void av_vorbis_parse_free(AVVorbisParseContext **s); ...@@ -49,8 +49,7 @@ void av_vorbis_parse_free(AVVorbisParseContext **s);
/** /**
* Get the duration for a Vorbis packet. * Get the duration for a Vorbis packet.
* *
* avpriv_vorbis_parse_extradata() must have been successfully called prior to * If @p flags is @c NULL,
* this in order for a correct duration to be returned. If @p flags is @c NULL,
* special frames are considered invalid. * special frames are considered invalid.
* *
* @param s Vorbis parser context * @param s Vorbis parser context
...@@ -58,8 +57,8 @@ void av_vorbis_parse_free(AVVorbisParseContext **s); ...@@ -58,8 +57,8 @@ void av_vorbis_parse_free(AVVorbisParseContext **s);
* @param buf_size size of the buffer * @param buf_size size of the buffer
* @param flags flags for special frames * @param flags flags for special frames
*/ */
int avpriv_vorbis_parse_frame_flags(AVVorbisParseContext *s, const uint8_t *buf, int av_vorbis_parse_frame_flags(AVVorbisParseContext *s, const uint8_t *buf,
int buf_size, int *flags); int buf_size, int *flags);
/** /**
* Get the duration for a Vorbis packet. * Get the duration for a Vorbis packet.
......
...@@ -52,6 +52,21 @@ struct AVVorbisParseContext { ...@@ -52,6 +52,21 @@ struct AVVorbisParseContext {
*/ */
int avpriv_vorbis_parse_extradata(AVCodecContext *avctx, AVVorbisParseContext *s); int avpriv_vorbis_parse_extradata(AVCodecContext *avctx, 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,
* special frames are considered invalid.
*
* @param s Vorbis parser context
* @param buf buffer containing a Vorbis frame
* @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);
/** /**
* Get the duration for a Vorbis packet. * Get the duration for a Vorbis packet.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment