avutil/downmix_info: add missing semicolon
Fixes compilation broken by 8a72775d5d.
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
8accee8b56
commit
e0f3c1018a
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue