Merge commit '159a06dfc8'
* commit '159a06dfc8':
stereo3d: initialize AVStereo3D to zero
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
ad1b571b26
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue