Mercurial > libavcodec.hg
diff h264.c @ 10923:7a949922866e libavcodec
Fix 10l segfault with threads.
| author | michael |
|---|---|
| date | Mon, 18 Jan 2010 20:19:19 +0000 |
| parents | 497929e9d912 |
| children | b847f02d5b03 |
line wrap: on
line diff
--- a/h264.c Mon Jan 18 20:13:53 2010 +0000 +++ b/h264.c Mon Jan 18 20:19:19 2010 +0000 @@ -808,6 +808,7 @@ 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);
