diff 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
line wrap: on
line diff
--- a/h264.c	Tue Oct 06 06:18:57 2009 +0000
+++ b/h264.c	Tue Oct 06 06:33:18 2009 +0000
@@ -7461,7 +7461,7 @@
         }
 
         avctx->execute(avctx, (void *)decode_slice,
-                       (void **)h->thread_context, NULL, context_count, sizeof(void*));
+                       h->thread_context, NULL, context_count, sizeof(void*));
 
         /* pull back stuff from slices to master context */
         hx = h->thread_context[context_count - 1];