[FFmpeg-cvslog] r21293 - trunk/libavcodec/h264.c
michael
subversion
Mon Jan 18 21:19:20 CET 2010
Author: michael
Date: Mon Jan 18 21:19:19 2010
New Revision: 21293
Log:
Fix 10l segfault with threads.
Modified:
trunk/libavcodec/h264.c
Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c Mon Jan 18 21:13:53 2010 (r21292)
+++ trunk/libavcodec/h264.c Mon Jan 18 21:19:19 2010 (r21293)
@@ -808,6 +808,7 @@ static void clone_tables(H264Context *ds
dst->mvd_table[0] = src->mvd_table[0];
dst->mvd_table[1] = src->mvd_table[1];
dst->direct_table = src->direct_table;
+ dst->list_counts = src->list_counts;
dst->s.obmc_scratchpad = NULL;
ff_h264_pred_init(&dst->hpc, src->s.codec_id);
More information about the ffmpeg-cvslog
mailing list