diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-11-26 18:35:26 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-11-28 10:01:50 +0100 |
commit | c88ebdb42c0a4e4c3d78c705752f06fe78af27f6 (patch) | |
tree | 2699a272b193386456170a685e06192e9e754a4d /libavcodec/dxva2_vc1.c | |
parent | 1469f943adb06b85ac7e22fd3e8121c2308b0830 (diff) | |
download | ffmpeg-c88ebdb42c0a4e4c3d78c705752f06fe78af27f6.tar.gz |
Eliminate pointless 0/NULL initializers in AVCodec and similar declarations.
Diffstat (limited to 'libavcodec/dxva2_vc1.c')
-rw-r--r-- | libavcodec/dxva2_vc1.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/dxva2_vc1.c b/libavcodec/dxva2_vc1.c index f8b74a2b35..22ad4598ae 100644 --- a/libavcodec/dxva2_vc1.c +++ b/libavcodec/dxva2_vc1.c @@ -269,7 +269,6 @@ AVHWAccel ff_wmv3_dxva2_hwaccel = { .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_WMV3, .pix_fmt = PIX_FMT_DXVA2_VLD, - .capabilities = 0, .start_frame = start_frame, .decode_slice = decode_slice, .end_frame = end_frame, @@ -282,7 +281,6 @@ AVHWAccel ff_vc1_dxva2_hwaccel = { .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_VC1, .pix_fmt = PIX_FMT_DXVA2_VLD, - .capabilities = 0, .start_frame = start_frame, .decode_slice = decode_slice, .end_frame = end_frame, |