mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2025-02-21 13:22:13 +00:00
lavc/v4l2_m2m_enc: Add missing braces around initializers.
Fixes the following warnings: libavcodec/v4l2_m2m_enc.c:51:12: warning: missing braces around initializer libavcodec/v4l2_m2m_enc.c:71:12: warning: missing braces around initializer
This commit is contained in:
parent
9305bdc68f
commit
6dbb64fdcc
@ -48,7 +48,7 @@ static inline void v4l2_set_timeperframe(V4L2m2mContext *s, unsigned int num, un
|
|||||||
|
|
||||||
static inline void v4l2_set_ext_ctrl(V4L2m2mContext *s, unsigned int id, signed int value, const char *name)
|
static inline void v4l2_set_ext_ctrl(V4L2m2mContext *s, unsigned int id, signed int value, const char *name)
|
||||||
{
|
{
|
||||||
struct v4l2_ext_controls ctrls = { 0 };
|
struct v4l2_ext_controls ctrls = { { 0 } };
|
||||||
struct v4l2_ext_control ctrl = { 0 };
|
struct v4l2_ext_control ctrl = { 0 };
|
||||||
|
|
||||||
/* set ctrls */
|
/* set ctrls */
|
||||||
@ -68,7 +68,7 @@ static inline void v4l2_set_ext_ctrl(V4L2m2mContext *s, unsigned int id, signed
|
|||||||
|
|
||||||
static inline int v4l2_get_ext_ctrl(V4L2m2mContext *s, unsigned int id, signed int *value, const char *name)
|
static inline int v4l2_get_ext_ctrl(V4L2m2mContext *s, unsigned int id, signed int *value, const char *name)
|
||||||
{
|
{
|
||||||
struct v4l2_ext_controls ctrls = { 0 };
|
struct v4l2_ext_controls ctrls = { { 0 } };
|
||||||
struct v4l2_ext_control ctrl = { 0 };
|
struct v4l2_ext_control ctrl = { 0 };
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user