Browse Source

segfault fix

Originally committed as revision 3017 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 22 years ago
parent
commit
e4a1fdfdee
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/h263dec.c

+ 2
- 1
libavcodec/h263dec.c View File

@@ -716,7 +716,8 @@ assert(s->current_picture.pict_type == s->pict_type);
ff_print_debug_info(s, pict);
} else {
*pict= *(AVFrame*)&s->last_picture;
ff_print_debug_info(s, pict);
if(pict)
ff_print_debug_info(s, pict);
}

/* Return the Picture timestamp as the frame number */


Loading…
Cancel
Save