Commit 78df2258 authored by Vitor Sessak's avatar Vitor Sessak

Simplify: use two distinct functions to decode MACE3 and MACE6, since the

previous mace_decode_init() function was almost just a switch statement.

Originally committed as revision 15208 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b97c4138
...@@ -391,7 +391,7 @@ static av_cold int mace_decode_init(AVCodecContext * avctx) ...@@ -391,7 +391,7 @@ static av_cold int mace_decode_init(AVCodecContext * avctx)
return 0; return 0;
} }
static int mace_decode_frame(AVCodecContext *avctx, static int mace3_decode_frame(AVCodecContext *avctx,
void *data, int *data_size, void *data, int *data_size,
const uint8_t *buf, int buf_size) const uint8_t *buf, int buf_size)
{ {
...@@ -399,27 +399,29 @@ static int mace_decode_frame(AVCodecContext *avctx, ...@@ -399,27 +399,29 @@ static int mace_decode_frame(AVCodecContext *avctx,
MACEContext *c = avctx->priv_data; MACEContext *c = avctx->priv_data;
int i; int i;
switch (avctx->codec->id) { for(i = 0; i < avctx->channels; i++)
case CODEC_ID_MACE3: Exp1to3(c, buf, samples + i, buf_size / 2 / avctx->channels,
dprintf(avctx, "mace_decode_frame[3]()"); avctx->channels, i + 1);
for(i = 0; i < avctx->channels; i++)
Exp1to3(c, buf, samples + i, buf_size / 2 / avctx->channels, *data_size = 2 * 3 * buf_size;
avctx->channels, i + 1);
return buf_size;
*data_size = 2 * 3 * buf_size; }
break;
case CODEC_ID_MACE6: static int mace6_decode_frame(AVCodecContext *avctx,
dprintf(avctx, "mace_decode_frame[6]()"); void *data, int *data_size,
const uint8_t *buf, int buf_size)
for(i = 0; i < avctx->channels; i++) {
Exp1to6(c, buf, samples + i, buf_size / avctx->channels, short *samples = data;
avctx->channels, i + 1); MACEContext *c = avctx->priv_data;
int i;
*data_size = 2 * 6 * buf_size;
break; for(i = 0; i < avctx->channels; i++)
default: Exp1to6(c, buf, samples + i, buf_size / avctx->channels,
return -1; avctx->channels, i + 1);
}
*data_size = 2 * 6 * buf_size;
return buf_size; return buf_size;
} }
...@@ -431,7 +433,7 @@ AVCodec mace3_decoder = { ...@@ -431,7 +433,7 @@ AVCodec mace3_decoder = {
mace_decode_init, mace_decode_init,
NULL, NULL,
NULL, NULL,
mace_decode_frame, mace3_decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("MACE (Macintosh Audio Compression/Expansion) 3:1"), .long_name = NULL_IF_CONFIG_SMALL("MACE (Macintosh Audio Compression/Expansion) 3:1"),
}; };
...@@ -443,7 +445,7 @@ AVCodec mace6_decoder = { ...@@ -443,7 +445,7 @@ AVCodec mace6_decoder = {
mace_decode_init, mace_decode_init,
NULL, NULL,
NULL, NULL,
mace_decode_frame, mace6_decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("MACE (Macintosh Audio Compression/Expansion) 6:1"), .long_name = NULL_IF_CONFIG_SMALL("MACE (Macintosh Audio Compression/Expansion) 6:1"),
}; };
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