diff options
author | Paul B Mahol <onemda@gmail.com> | 2011-12-30 20:00:53 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-12-30 20:00:53 +0100 |
commit | ba10207bbe5ebd97b5afc3f19baf4a1ad8f974d5 (patch) | |
tree | c5602a20dc46f1f6dc9e555d0d1b1926a17cf210 /libavcodec | |
parent | 73ba2c1e62a870c7d7b27cd8093ef39447a57903 (diff) | |
download | ffmpeg-ba10207bbe5ebd97b5afc3f19baf4a1ad8f974d5.tar.gz |
Use more designated initializers.
Also remove some pointless NULL/0 assigments.
C++ code must be left as it is because named struct
initializers are not supported by C++ standard.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/bintext.c | 51 | ||||
-rw-r--r-- | libavcodec/diracdec.c | 1 | ||||
-rw-r--r-- | libavcodec/flashsv2enc.c | 14 | ||||
-rw-r--r-- | libavcodec/g729dec.c | 14 | ||||
-rw-r--r-- | libavcodec/j2kdec.c | 15 | ||||
-rw-r--r-- | libavcodec/j2kenc.c | 14 | ||||
-rw-r--r-- | libavcodec/libaacplus.c | 14 | ||||
-rw-r--r-- | libavcodec/libopenjpegenc.c | 1 | ||||
-rw-r--r-- | libavcodec/msvideo1enc.c | 14 | ||||
-rw-r--r-- | libavcodec/pictordec.c | 2 | ||||
-rw-r--r-- | libavcodec/proresenc.c | 1 | ||||
-rw-r--r-- | libavcodec/sonic.c | 45 |
12 files changed, 87 insertions, 99 deletions
diff --git a/libavcodec/bintext.c b/libavcodec/bintext.c index df37feea12..0b46dd444e 100644 --- a/libavcodec/bintext.c +++ b/libavcodec/bintext.c @@ -211,40 +211,37 @@ static av_cold int decode_end(AVCodecContext *avctx) } AVCodec ff_bintext_decoder = { - "bintext", - AVMEDIA_TYPE_VIDEO, - CODEC_ID_BINTEXT, - sizeof(XbinContext), - decode_init, - NULL, - decode_end, - decode_frame, - CODEC_CAP_DR1, + .name = "bintext", + .type = AVMEDIA_TYPE_VIDEO, + .id = CODEC_ID_BINTEXT, + .priv_data_size = sizeof(XbinContext), + .init = decode_init, + .close = decode_end, + .decode = decode_frame, + .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("Binary text"), }; AVCodec ff_xbin_decoder = { - "xbin", - AVMEDIA_TYPE_VIDEO, - CODEC_ID_XBIN, - sizeof(XbinContext), - decode_init, - NULL, - decode_end, - decode_frame, - CODEC_CAP_DR1, + .name = "xbin", + .type = AVMEDIA_TYPE_VIDEO, + .id = CODEC_ID_XBIN, + .priv_data_size = sizeof(XbinContext), + .init = decode_init, + .close = decode_end, + .decode = decode_frame, + .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("eXtended BINary text"), }; AVCodec ff_idf_decoder = { - "idf", - AVMEDIA_TYPE_VIDEO, - CODEC_ID_IDF, - sizeof(XbinContext), - decode_init, - NULL, - decode_end, - decode_frame, - CODEC_CAP_DR1, + .name = "idf", + .type = AVMEDIA_TYPE_VIDEO, + .id = CODEC_ID_IDF, + .priv_data_size = sizeof(XbinContext), + .init = decode_init, + .close = decode_end, + .decode = decode_frame, + .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("iCEDraw text"), }; diff --git a/libavcodec/diracdec.c b/libavcodec/diracdec.c index 1ace7bd425..1bc73349e0 100644 --- a/libavcodec/diracdec.c +++ b/libavcodec/diracdec.c @@ -1898,7 +1898,6 @@ AVCodec ff_dirac_decoder = { .id = CODEC_ID_DIRAC, .priv_data_size = sizeof(DiracContext), .init = dirac_decode_init, - .encode = NULL, .close = dirac_decode_end, .decode = dirac_decode_frame, .capabilities = CODEC_CAP_DELAY, diff --git a/libavcodec/flashsv2enc.c b/libavcodec/flashsv2enc.c index 27bd87816b..9f7017e033 100644 --- a/libavcodec/flashsv2enc.c +++ b/libavcodec/flashsv2enc.c @@ -894,13 +894,13 @@ static av_cold int flashsv2_encode_end(AVCodecContext * avctx) } AVCodec ff_flashsv2_encoder = { - "flashsv2", - AVMEDIA_TYPE_VIDEO, - CODEC_ID_FLASHSV2, - sizeof(FlashSV2Context), - flashsv2_encode_init, - flashsv2_encode_frame, - flashsv2_encode_end, + .name = "flashsv2", + .type = AVMEDIA_TYPE_VIDEO, + .id = CODEC_ID_FLASHSV2, + .priv_data_size = sizeof(FlashSV2Context), + .init = flashsv2_encode_init, + .encode = flashsv2_encode_frame, + .close = flashsv2_encode_end, .pix_fmts = (enum PixelFormat[]) {PIX_FMT_BGR24, PIX_FMT_NONE}, .long_name = NULL_IF_CONFIG_SMALL("Flash Screen Video Version 2"), .capabilities = CODEC_CAP_EXPERIMENTAL, diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c index 4714f19554..191794b6e7 100644 --- a/libavcodec/g729dec.c +++ b/libavcodec/g729dec.c @@ -714,14 +714,12 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVCodec ff_g729_decoder = { - "g729", - AVMEDIA_TYPE_AUDIO, - CODEC_ID_G729, - sizeof(G729Context), - decoder_init, - NULL, - NULL, - decode_frame, + .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"), }; diff --git a/libavcodec/j2kdec.c b/libavcodec/j2kdec.c index e35c97d860..d605b13ea7 100644 --- a/libavcodec/j2kdec.c +++ b/libavcodec/j2kdec.c @@ -1068,14 +1068,13 @@ static av_cold int decode_end(AVCodecContext *avctx) } AVCodec ff_jpeg2000_decoder = { - "j2k", - AVMEDIA_TYPE_VIDEO, - CODEC_ID_JPEG2000, - sizeof(J2kDecoderContext), - j2kdec_init, - NULL, - decode_end, - decode_frame, + .name = "j2k", + .type = AVMEDIA_TYPE_VIDEO, + .id = CODEC_ID_JPEG2000, + .priv_data_size = sizeof(J2kDecoderContext), + .init = j2kdec_init, + .close = decode_end, + .decode = decode_frame, .capabilities = CODEC_CAP_EXPERIMENTAL, .long_name = NULL_IF_CONFIG_SMALL("JPEG 2000"), .pix_fmts = diff --git a/libavcodec/j2kenc.c b/libavcodec/j2kenc.c index 58789c9a86..37e31a9c69 100644 --- a/libavcodec/j2kenc.c +++ b/libavcodec/j2kenc.c @@ -1036,13 +1036,13 @@ static int j2kenc_destroy(AVCodecContext *avctx) } AVCodec ff_jpeg2000_encoder = { - "j2k", - AVMEDIA_TYPE_VIDEO, - CODEC_ID_JPEG2000, - sizeof(J2kEncoderContext), - j2kenc_init, - encode_frame, - j2kenc_destroy, + .name = "j2k", + .type = AVMEDIA_TYPE_VIDEO, + .id = CODEC_ID_JPEG2000, + .priv_data_size = sizeof(J2kEncoderContext), + .init = j2kenc_init, + .encode = encode_frame, + .close = j2kenc_destroy, .capabilities= CODEC_CAP_EXPERIMENTAL, .long_name = NULL_IF_CONFIG_SMALL("JPEG 2000"), .pix_fmts = diff --git a/libavcodec/libaacplus.c b/libavcodec/libaacplus.c index a5ededbf39..3ab4e0362c 100644 --- a/libavcodec/libaacplus.c +++ b/libavcodec/libaacplus.c @@ -122,13 +122,13 @@ static av_cold int aacPlus_encode_close(AVCodecContext *avctx) } AVCodec ff_libaacplus_encoder = { - "libaacplus", - AVMEDIA_TYPE_AUDIO, - CODEC_ID_AAC, - sizeof(aacPlusAudioContext), - aacPlus_encode_init, - aacPlus_encode_frame, - aacPlus_encode_close, + .name = "libaacplus", + .type = AVMEDIA_TYPE_AUDIO, + .id = CODEC_ID_AAC, + .priv_data_size = sizeof(aacPlusAudioContext), + .init = aacPlus_encode_init, + .encode = aacPlus_encode_frame, + .close = aacPlus_encode_close, .sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE}, .long_name = NULL_IF_CONFIG_SMALL("libaacplus AAC+ (Advanced Audio Codec with SBR+PS)"), }; diff --git a/libavcodec/libopenjpegenc.c b/libavcodec/libopenjpegenc.c index 6b37fb08cf..c088acccc9 100644 --- a/libavcodec/libopenjpegenc.c +++ b/libavcodec/libopenjpegenc.c @@ -365,7 +365,6 @@ AVCodec ff_libopenjpeg_encoder = { .init = libopenjpeg_encode_init, .encode = libopenjpeg_encode_frame, .close = libopenjpeg_encode_close, - .decode = NULL, .capabilities = 0, .pix_fmts = (const enum PixelFormat[]){PIX_FMT_RGB24,PIX_FMT_RGBA,PIX_FMT_GRAY8, PIX_FMT_YUV420P,PIX_FMT_YUV422P,PIX_FMT_YUVA420P, diff --git a/libavcodec/msvideo1enc.c b/libavcodec/msvideo1enc.c index 09cc7a196d..401ac2a2ae 100644 --- a/libavcodec/msvideo1enc.c +++ b/libavcodec/msvideo1enc.c @@ -290,13 +290,13 @@ static av_cold int encode_end(AVCodecContext *avctx) } AVCodec ff_msvideo1_encoder = { - "msvideo1", - AVMEDIA_TYPE_VIDEO, - CODEC_ID_MSVIDEO1, - sizeof(Msvideo1EncContext), - encode_init, - encode_frame, - encode_end, + .name = "msvideo1", + .type = AVMEDIA_TYPE_VIDEO, + .id = CODEC_ID_MSVIDEO1, + .priv_data_size = sizeof(Msvideo1EncContext), + .init = encode_init, + .encode = encode_frame, + .close = encode_end, .pix_fmts = (const enum PixelFormat[]){PIX_FMT_RGB555, PIX_FMT_NONE}, .long_name = NULL_IF_CONFIG_SMALL("Microsoft Video-1"), }; diff --git a/libavcodec/pictordec.c b/libavcodec/pictordec.c index 7c95f89bbd..b3b5f7ef4f 100644 --- a/libavcodec/pictordec.c +++ b/libavcodec/pictordec.c @@ -253,7 +253,7 @@ AVCodec ff_pictor_decoder = { .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_PICTOR, .priv_data_size = sizeof(PicContext), - decode_init, + .init = decode_init, .close = decode_end, .decode = decode_frame, .capabilities = CODEC_CAP_DR1, diff --git a/libavcodec/proresenc.c b/libavcodec/proresenc.c index 8cdcff3c49..09678a002f 100644 --- a/libavcodec/proresenc.c +++ b/libavcodec/proresenc.c @@ -594,6 +594,5 @@ AVCodec ff_prores_encoder = { .encode = prores_encode_frame, .pix_fmts = (const enum PixelFormat[]){PIX_FMT_YUV422P10, PIX_FMT_NONE}, .long_name = NULL_IF_CONFIG_SMALL("Apple ProRes"), - .capabilities = 0, .profiles = profiles }; diff --git a/libavcodec/sonic.c b/libavcodec/sonic.c index e7cdb3ba81..71641f95ff 100644 --- a/libavcodec/sonic.c +++ b/libavcodec/sonic.c @@ -936,42 +936,39 @@ static int sonic_decode_frame(AVCodecContext *avctx, } AVCodec ff_sonic_decoder = { - "sonic", - AVMEDIA_TYPE_AUDIO, - CODEC_ID_SONIC, - sizeof(SonicContext), - sonic_decode_init, - NULL, - sonic_decode_close, - sonic_decode_frame, + .name = "sonic", + .type = AVMEDIA_TYPE_AUDIO, + .id = CODEC_ID_SONIC, + .priv_data_size = sizeof(SonicContext), + .init = sonic_decode_init, + .close = sonic_decode_close, + .decode = sonic_decode_frame, .long_name = NULL_IF_CONFIG_SMALL("Sonic"), }; #endif /* CONFIG_SONIC_DECODER */ #if CONFIG_SONIC_ENCODER AVCodec ff_sonic_encoder = { - "sonic", - AVMEDIA_TYPE_AUDIO, - CODEC_ID_SONIC, - sizeof(SonicContext), - sonic_encode_init, - sonic_encode_frame, - sonic_encode_close, - NULL, + .name = "sonic", + .type = AVMEDIA_TYPE_AUDIO, + .id = CODEC_ID_SONIC, + .priv_data_size = sizeof(SonicContext), + .init = sonic_encode_init, + .encode = sonic_encode_frame, + .close = sonic_encode_close, .long_name = NULL_IF_CONFIG_SMALL("Sonic"), }; #endif #if CONFIG_SONIC_LS_ENCODER AVCodec ff_sonic_ls_encoder = { - "sonicls", - AVMEDIA_TYPE_AUDIO, - CODEC_ID_SONIC_LS, - sizeof(SonicContext), - sonic_encode_init, - sonic_encode_frame, - sonic_encode_close, - NULL, + .name = "sonicls", + .type = AVMEDIA_TYPE_AUDIO, + .id = CODEC_ID_SONIC_LS, + .priv_data_size = sizeof(SonicContext), + .init = sonic_encode_init, + .encode = sonic_encode_frame, + .close = sonic_encode_close, .long_name = NULL_IF_CONFIG_SMALL("Sonic lossless"), }; #endif |