comparison h264.c @ 7831:8195c970d077 libavcodec

Rename error_resilience to error_recognition.
author michael
date Mon, 08 Sep 2008 18:18:49 +0000
parents 5c532e05faea
children d35a71a3db5f
comparison
equal deleted inserted replaced
7830:3da762190370 7831:8195c970d077
7253 if(context_count == 1) { 7253 if(context_count == 1) {
7254 decode_slice(avctx, h); 7254 decode_slice(avctx, h);
7255 } else { 7255 } else {
7256 for(i = 1; i < context_count; i++) { 7256 for(i = 1; i < context_count; i++) {
7257 hx = h->thread_context[i]; 7257 hx = h->thread_context[i];
7258 hx->s.error_resilience = avctx->error_resilience; 7258 hx->s.error_recognition = avctx->error_recognition;
7259 hx->s.error_count = 0; 7259 hx->s.error_count = 0;
7260 } 7260 }
7261 7261
7262 avctx->execute(avctx, (void *)decode_slice, 7262 avctx->execute(avctx, (void *)decode_slice,
7263 (void **)h->thread_context, NULL, context_count); 7263 (void **)h->thread_context, NULL, context_count);