g729dec: align codec declarations

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2012-06-14 15:12:02 +00:00
parent 225489f19b
commit 8ce0c7d264
1 changed files with 3 additions and 4 deletions

View 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"),
};