stereo3d: initialize AVStereo3D to zero

Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
Felix Abecassis 2014-08-12 14:56:35 +02:00 committed by Anton Khirnov
parent 4e629ef80e
commit 159a06dfc8
1 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,7 @@
*/
#include <stdint.h>
#include <string.h>
#include "mem.h"
#include "stereo3d.h"
@ -36,5 +37,7 @@ AVStereo3D *av_stereo3d_create_side_data(AVFrame *frame)
if (!side_data)
return NULL;
memset(side_data->data, 0, sizeof(AVStereo3D));
return (AVStereo3D *)side_data->data;
}