mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
vp8enc: Fix 'argument to 'sizeof' in 'memset' call is the same expression as the destination' compiler warning
This commit is contained in:
parent
5a6b7fba4d
commit
837763fee8
1 changed files with 1 additions and 1 deletions
|
@ -843,7 +843,7 @@ gst_vp8_enc_set_format (GstBaseVideoEncoder * base_video_encoder,
|
|||
|
||||
/* prepare cached image buffer setup */
|
||||
image = &encoder->image;
|
||||
memset (image, 0, sizeof (image));
|
||||
memset (image, 0, sizeof (*image));
|
||||
|
||||
image->fmt = VPX_IMG_FMT_I420;
|
||||
image->bps = 12;
|
||||
|
|
Loading…
Reference in a new issue