Commit 159a06df authored by Felix Abecassis's avatar Felix Abecassis Committed by Anton Khirnov

stereo3d: initialize AVStereo3D to zero

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent 4e629ef8
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
*/ */
#include <stdint.h> #include <stdint.h>
#include <string.h>
#include "mem.h" #include "mem.h"
#include "stereo3d.h" #include "stereo3d.h"
...@@ -36,5 +37,7 @@ AVStereo3D *av_stereo3d_create_side_data(AVFrame *frame) ...@@ -36,5 +37,7 @@ AVStereo3D *av_stereo3d_create_side_data(AVFrame *frame)
if (!side_data) if (!side_data)
return NULL; return NULL;
memset(side_data->data, 0, sizeof(AVStereo3D));
return (AVStereo3D *)side_data->data; return (AVStereo3D *)side_data->data;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment