Browse Source

Fix H.264 decoding.

(Problem analyzed by Uoti Urpala)

Originally committed as revision 15816 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Carl Eugen Hoyos 17 years ago
parent
commit
74e8b78b20
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264.c

+ 1
- 1
libavcodec/h264.c View File

@@ -7338,7 +7338,7 @@ static void execute_decode_slices(H264Context *h, int context_count){
int i;

if(context_count == 1) {
decode_slice(avctx, h);
decode_slice(avctx, &h);
} else {
for(i = 1; i < context_count; i++) {
hx = h->thread_context[i];


Loading…
Cancel
Save