Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-06-14 19:12:02 +0400
committerPaul B Mahol <onemda@gmail.com>2012-06-14 19:48:43 +0400
commit8ce0c7d2649b2ff8961d81538def1a73647d4d6c (patch)
treebf8a0f3bcd9580342afb9aaa3620799b4b7e036a /libavcodec/g729dec.c
parent225489f19b918d46b71ccf628bfdd84f940ed6b4 (diff)
g729dec: align codec declarations
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/g729dec.c')
-rw-r--r--libavcodec/g729dec.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c
index 3a8f65a3c2..28100305af 100644
--- a/libavcodec/g729dec.c
+++ b/libavcodec/g729dec.c
@@ -714,14 +714,13 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr,
return buf_size;
}
-AVCodec ff_g729_decoder =
-{
+AVCodec ff_g729_decoder = {
.name = "g729",
.type = AVMEDIA_TYPE_AUDIO,
.id = CODEC_ID_G729,
.priv_data_size = sizeof(G729Context),
.init = decoder_init,
.decode = decode_frame,
- .capabilities = CODEC_CAP_DR1,
- .long_name = NULL_IF_CONFIG_SMALL("G.729"),
+ .capabilities = CODEC_CAP_DR1,
+ .long_name = NULL_IF_CONFIG_SMALL("G.729"),
};