summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg4audio.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-25 19:59:35 +0100
committerJames Almer <jamrial@gmail.com>2021-04-27 10:43:03 -0300
commitc57d07c3d52ac303ee6201dd337694634997958f (patch)
treeb2e43aca604f9b763d187cc8b2cb6544d7dc022b /libavcodec/mpeg4audio.h
parentc197e3fe12154640f8234311382d82382c428936 (diff)
downloadffmpeg-c57d07c3d52ac303ee6201dd337694634997958f.tar.gz
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>
Diffstat (limited to 'libavcodec/mpeg4audio.h')
-rw-r--r--libavcodec/mpeg4audio.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/libavcodec/mpeg4audio.h b/libavcodec/mpeg4audio.h
index b274e92b62..3187df68d2 100644
--- a/libavcodec/mpeg4audio.h
+++ b/libavcodec/mpeg4audio.h
@@ -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.