mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-17 23:17:41 +08:00
avutil/downmix_info: add missing semicolon
Fixes compilation broken by 8a72775d5dba3253c4ffd9b7ec91f73beda42641. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@ -31,7 +31,7 @@ AVDownmixInfo *av_downmix_info_update_side_data(AVFrame *frame)
|
||||
side_data = av_frame_new_side_data(frame, AV_FRAME_DATA_DOWNMIX_INFO,
|
||||
sizeof(AVDownmixInfo));
|
||||
if (side_data)
|
||||
memset(side_data->data, 0, sizeof(AVDownmixInfo))
|
||||
memset(side_data->data, 0, sizeof(AVDownmixInfo));
|
||||
}
|
||||
|
||||
if (!side_data)
|
||||
|
Reference in New Issue
Block a user