Mercurial > libavcodec.hg
changeset 7795:7f81fb0dd829 libavcodec
Simplify: use two distinct functions to decode MACE3 and MACE6, since the
previous mace_decode_init() function was almost just a switch statement.
author | vitor |
---|---|
date | Thu, 04 Sep 2008 23:18:28 +0000 |
parents | 315d2a6c6a1e |
children | a7caaa2b56e9 |
files | mace.c |
diffstat | 1 files changed, 23 insertions(+), 21 deletions(-) [+] |
line wrap: on
line diff
--- a/mace.c Thu Sep 04 23:12:20 2008 +0000 +++ b/mace.c Thu Sep 04 23:18:28 2008 +0000 @@ -391,7 +391,7 @@ return 0; } -static int mace_decode_frame(AVCodecContext *avctx, +static int mace3_decode_frame(AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size) { @@ -399,27 +399,29 @@ MACEContext *c = avctx->priv_data; int i; - switch (avctx->codec->id) { - case CODEC_ID_MACE3: - dprintf(avctx, "mace_decode_frame[3]()"); - for(i = 0; i < avctx->channels; i++) - Exp1to3(c, buf, samples + i, buf_size / 2 / avctx->channels, - avctx->channels, i + 1); + for(i = 0; i < avctx->channels; i++) + Exp1to3(c, buf, samples + i, buf_size / 2 / avctx->channels, + avctx->channels, i + 1); + + *data_size = 2 * 3 * buf_size; + + return buf_size; +} - *data_size = 2 * 3 * buf_size; - break; - case CODEC_ID_MACE6: - dprintf(avctx, "mace_decode_frame[6]()"); +static int mace6_decode_frame(AVCodecContext *avctx, + void *data, int *data_size, + const uint8_t *buf, int buf_size) +{ + short *samples = data; + MACEContext *c = avctx->priv_data; + int i; - for(i = 0; i < avctx->channels; i++) - Exp1to6(c, buf, samples + i, buf_size / avctx->channels, - avctx->channels, i + 1); + for(i = 0; i < avctx->channels; i++) + Exp1to6(c, buf, samples + i, buf_size / avctx->channels, + avctx->channels, i + 1); - *data_size = 2 * 6 * buf_size; - break; - default: - return -1; - } + *data_size = 2 * 6 * buf_size; + return buf_size; } @@ -431,7 +433,7 @@ mace_decode_init, NULL, NULL, - mace_decode_frame, + mace3_decode_frame, .long_name = NULL_IF_CONFIG_SMALL("MACE (Macintosh Audio Compression/Expansion) 3:1"), }; @@ -443,7 +445,7 @@ mace_decode_init, NULL, NULL, - mace_decode_frame, + mace6_decode_frame, .long_name = NULL_IF_CONFIG_SMALL("MACE (Macintosh Audio Compression/Expansion) 6:1"), };