mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02:00
avutil/downmix_info: add missing semicolon
Fixes compilation broken by 8a72775d5d.
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