mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec/mpeg4audio: Remove avpriv_mpeg4audio_get_config
Superseded by avpriv_mpeg4audio_get_config2. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
c197e3fe12
commit
c57d07c3d5
@ -169,24 +169,6 @@ int ff_mpeg4audio_get_config_gb(MPEG4AudioConfig *c, GetBitContext *gb,
|
||||
return specific_config_bitindex - start_bit_index;
|
||||
}
|
||||
|
||||
#if LIBAVCODEC_VERSION_MAJOR < 59
|
||||
int avpriv_mpeg4audio_get_config(MPEG4AudioConfig *c, const uint8_t *buf,
|
||||
int bit_size, int sync_extension)
|
||||
{
|
||||
GetBitContext gb;
|
||||
int ret;
|
||||
|
||||
if (bit_size <= 0)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
ret = init_get_bits(&gb, buf, bit_size);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return ff_mpeg4audio_get_config_gb(c, &gb, sync_extension, NULL);
|
||||
}
|
||||
#endif
|
||||
|
||||
int avpriv_mpeg4audio_get_config2(MPEG4AudioConfig *c, const uint8_t *buf,
|
||||
int size, int sync_extension, void *logctx)
|
||||
{
|
||||
|
@ -59,19 +59,6 @@ extern const uint8_t ff_mpeg4audio_channels[14];
|
||||
int ff_mpeg4audio_get_config_gb(MPEG4AudioConfig *c, GetBitContext *gb,
|
||||
int sync_extension, void *logctx);
|
||||
|
||||
#if LIBAVCODEC_VERSION_MAJOR < 59
|
||||
/**
|
||||
* Parse MPEG-4 systems extradata from a raw buffer to retrieve audio configuration.
|
||||
* @param[in] c MPEG4AudioConfig structure to fill.
|
||||
* @param[in] buf Extradata from container.
|
||||
* @param[in] bit_size Extradata size in bits.
|
||||
* @param[in] sync_extension look for a sync extension after config if true.
|
||||
* @return negative AVERROR code on error, on success AudioSpecificConfig bit index in extradata.
|
||||
*/
|
||||
int avpriv_mpeg4audio_get_config(MPEG4AudioConfig *c, const uint8_t *buf,
|
||||
int bit_size, int sync_extension);
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Parse MPEG-4 systems extradata from a raw buffer to retrieve audio configuration.
|
||||
* @param[in] c MPEG4AudioConfig structure to fill.
|
||||
|
Loading…
x
Reference in New Issue
Block a user