diff options
author | Paul B Mahol | 2011-12-30 20:00:53 +0100 |
---|---|---|
committer | Carl Eugen Hoyos | 2011-12-30 20:00:53 +0100 |
commit | ba10207bbe5ebd97b5afc3f19baf4a1ad8f974d5 (patch) | |
tree | c5602a20dc46f1f6dc9e555d0d1b1926a17cf210 /libavformat/crcenc.c | |
parent | 73ba2c1e62a870c7d7b27cd8093ef39447a57903 (diff) |
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 'libavformat/crcenc.c')
-rw-r--r-- | libavformat/crcenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/crcenc.c b/libavformat/crcenc.c index d0ca8352d9..1f5854e080 100644 --- a/libavformat/crcenc.c +++ b/libavformat/crcenc.c @@ -57,7 +57,6 @@ static int crc_write_trailer(struct AVFormatContext *s) AVOutputFormat ff_crc_muxer = { .name = "crc", .long_name = NULL_IF_CONFIG_SMALL("CRC testing format"), - .extensions = "", .priv_data_size = sizeof(CRCState), .audio_codec = CODEC_ID_PCM_S16LE, .video_codec = CODEC_ID_RAWVIDEO, |