From c88ebdb42c0a4e4c3d78c705752f06fe78af27f6 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 26 Nov 2011 18:35:26 +0100 Subject: Eliminate pointless 0/NULL initializers in AVCodec and similar declarations. --- libavcodec/vaapi_vc1.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'libavcodec/vaapi_vc1.c') diff --git a/libavcodec/vaapi_vc1.c b/libavcodec/vaapi_vc1.c index 452b97d25a..d519987ff0 100644 --- a/libavcodec/vaapi_vc1.c +++ b/libavcodec/vaapi_vc1.c @@ -346,11 +346,9 @@ AVHWAccel ff_wmv3_vaapi_hwaccel = { .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_WMV3, .pix_fmt = PIX_FMT_VAAPI_VLD, - .capabilities = 0, .start_frame = vaapi_vc1_start_frame, .end_frame = vaapi_vc1_end_frame, .decode_slice = vaapi_vc1_decode_slice, - .priv_data_size = 0, }; #endif @@ -359,9 +357,7 @@ AVHWAccel ff_vc1_vaapi_hwaccel = { .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_VC1, .pix_fmt = PIX_FMT_VAAPI_VLD, - .capabilities = 0, .start_frame = vaapi_vc1_start_frame, .end_frame = vaapi_vc1_end_frame, .decode_slice = vaapi_vc1_decode_slice, - .priv_data_size = 0, }; -- cgit v1.2.3