comparison h264.c @ 10368:59ec306245a4 libavcodec

Remove casts that are useless since the argument is void *.
author reimar
date Tue, 06 Oct 2009 06:33:18 +0000
parents 14353a40db5e
children bfea93e47391
comparison
equal deleted inserted replaced
10367:b790df0d7046 10368:59ec306245a4
7459 hx->s.error_recognition = avctx->error_recognition; 7459 hx->s.error_recognition = avctx->error_recognition;
7460 hx->s.error_count = 0; 7460 hx->s.error_count = 0;
7461 } 7461 }
7462 7462
7463 avctx->execute(avctx, (void *)decode_slice, 7463 avctx->execute(avctx, (void *)decode_slice,
7464 (void **)h->thread_context, NULL, context_count, sizeof(void*)); 7464 h->thread_context, NULL, context_count, sizeof(void*));
7465 7465
7466 /* pull back stuff from slices to master context */ 7466 /* pull back stuff from slices to master context */
7467 hx = h->thread_context[context_count - 1]; 7467 hx = h->thread_context[context_count - 1];
7468 s->mb_x = hx->s.mb_x; 7468 s->mb_x = hx->s.mb_x;
7469 s->mb_y = hx->s.mb_y; 7469 s->mb_y = hx->s.mb_y;