Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Garrett-Glaser <darkshikari@gmail.com>2010-06-03 00:05:27 +0400
committerJason Garrett-Glaser <darkshikari@gmail.com>2010-06-03 00:05:27 +0400
commit652d9d24dc83fedfc62836aa3e8b92f5bc8cdb20 (patch)
treeedf8b85557d3c9484bf0c18394cb013ab3e870b0 /libavcodec/libx264.c
parentd04c13f74bb9a24d5239f397b0c288c59b296822 (diff)
Properly initialize x264_picture_t in libx264.
Bump libx264 version requirement accordingly. Originally committed as revision 23430 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libx264.c')
-rw-r--r--libavcodec/libx264.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index 2d84dc33af..8387f41286 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -89,6 +89,7 @@ static int X264_frame(AVCodecContext *ctx, uint8_t *buf,
int nnal, i;
x264_picture_t pic_out;
+ x264_picture_init( &x4->pic );
x4->pic.img.i_csp = X264_CSP_I420;
x4->pic.img.i_plane = 3;