diff options
author | James Almer <jamrial@gmail.com> | 2019-09-27 10:43:36 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2019-09-27 10:49:29 -0300 |
commit | 75c7484fcb18dce4a9c00733dfcd8611877adbf6 (patch) | |
tree | 36dd71cf5d341410fb58859d52199babad04bc81 | |
parent | 35bbaa665246c363a1d623ea9b1e43f770e2768c (diff) | |
download | ffmpeg-75c7484fcb18dce4a9c00733dfcd8611877adbf6.tar.gz |
avcodec/mpeg4audio: fix doxy for ff_mpeg4audio_get_config_gb()
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/mpeg4audio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpeg4audio.h b/libavcodec/mpeg4audio.h index 00aa680c13..4b390e0f42 100644 --- a/libavcodec/mpeg4audio.h +++ b/libavcodec/mpeg4audio.h @@ -54,7 +54,7 @@ extern const uint8_t ff_mpeg4audio_channels[8]; * @param[in] gb Extradata from container. * @param[in] sync_extension look for a sync extension after config if true. * @param[in] logctx opaque struct starting with an AVClass element, used for logging. - * @return On error -1 is returned, on success AudioSpecificConfig bit index in extradata. + * @return negative AVERROR code on error, on success AudioSpecificConfig bit index in extradata. */ int ff_mpeg4audio_get_config_gb(MPEG4AudioConfig *c, GetBitContext *gb, int sync_extension, void *logctx); @@ -66,7 +66,7 @@ int ff_mpeg4audio_get_config_gb(MPEG4AudioConfig *c, GetBitContext *gb, * @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 On error -1 is returned, on success AudioSpecificConfig bit index in extradata. + * @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); |