Commit 56672b89 authored by vitor's avatar vitor

Cosmetics: rename mace3_decode_frame() to mace_decode_frame()


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15569 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7e326da7
...@@ -234,7 +234,7 @@ static av_cold int mace_decode_init(AVCodecContext * avctx) ...@@ -234,7 +234,7 @@ static av_cold int mace_decode_init(AVCodecContext * avctx)
return 0; return 0;
} }
static int mace3_decode_frame(AVCodecContext *avctx, static int mace_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)
{ {
...@@ -285,7 +285,7 @@ AVCodec mace3_decoder = { ...@@ -285,7 +285,7 @@ AVCodec mace3_decoder = {
mace_decode_init, mace_decode_init,
NULL, NULL,
NULL, NULL,
mace3_decode_frame, mace_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"),
}; };
...@@ -297,7 +297,7 @@ AVCodec mace6_decoder = { ...@@ -297,7 +297,7 @@ AVCodec mace6_decoder = {
mace_decode_init, mace_decode_init,
NULL, NULL,
NULL, NULL,
mace3_decode_frame, mace_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