# HG changeset patch
# User cehoyos
# Date 1198105432 0
# Node ID a5f184563b8c8a8b7a0f8423ff70d81eb044e620
# Parent  6abc2418601e00cc903f888428e5d042e2785537
Fix problem with multithreaded decoding, introduced by r11214.
Patch by Reinhard Nissl: rnissl gmx de

diff -r 6abc2418601e -r a5f184563b8c h264.c
--- a/h264.c	Wed Dec 19 08:14:21 2007 +0000
+++ b/h264.c	Wed Dec 19 23:03:52 2007 +0000
@@ -3849,7 +3849,7 @@
     h->slice_type= slice_type;
 
     s->pict_type= h->slice_type; // to make a few old func happy, it's wrong though
-    if (s->pict_type == B_TYPE && s->last_picture_ptr == NULL) {
+    if (s->pict_type == B_TYPE && s0->last_picture_ptr == NULL) {
         av_log(h->s.avctx, AV_LOG_ERROR,
                "B picture before any references, skipping\n");
         return -1;