OSDN Git Service

g729dec: align codec declarations
authorPaul B Mahol <onemda@gmail.com>
Thu, 14 Jun 2012 15:12:02 +0000 (15:12 +0000)
committerPaul B Mahol <onemda@gmail.com>
Thu, 14 Jun 2012 15:48:43 +0000 (15:48 +0000)
Signed-off-by: Paul B Mahol <onemda@gmail.com>
libavcodec/g729dec.c

index 3a8f65a..2810030 100644 (file)
@@ -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"),
 };