mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-03 18:37:46 +00:00
Eliminate pointless 0/NULL initializers in AVCodec and similar declarations.
This commit is contained in:
parent
1469f943ad
commit
c88ebdb42c
18 changed files with 0 additions and 32 deletions
|
@ -155,11 +155,9 @@ AVHWAccel ff_mpeg4_vaapi_hwaccel = {
|
|||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.id = CODEC_ID_MPEG4,
|
||||
.pix_fmt = PIX_FMT_VAAPI_VLD,
|
||||
.capabilities = 0,
|
||||
.start_frame = vaapi_mpeg4_start_frame,
|
||||
.end_frame = vaapi_mpeg4_end_frame,
|
||||
.decode_slice = vaapi_mpeg4_decode_slice,
|
||||
.priv_data_size = 0,
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -169,10 +167,8 @@ AVHWAccel ff_h263_vaapi_hwaccel = {
|
|||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.id = CODEC_ID_H263,
|
||||
.pix_fmt = PIX_FMT_VAAPI_VLD,
|
||||
.capabilities = 0,
|
||||
.start_frame = vaapi_mpeg4_start_frame,
|
||||
.end_frame = vaapi_mpeg4_end_frame,
|
||||
.decode_slice = vaapi_mpeg4_decode_slice,
|
||||
.priv_data_size = 0,
|
||||
};
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue