diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-10-06 06:33:18 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-10-06 06:33:18 +0000 |
commit | 01418506a2cf2ae5bee9931417279009b50bf531 (patch) | |
tree | c4803c3c14f6a4c10613ececc48d3e3edd7b3ae2 /libavcodec/h264.c | |
parent | 1c38da85e6ba75bea167a856e8ff99688c860ad7 (diff) | |
download | ffmpeg-01418506a2cf2ae5bee9931417279009b50bf531.tar.gz |
Remove casts that are useless since the argument is void *.
Originally committed as revision 20177 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index d1e9da5cd4..8b30eee1ee 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -7461,7 +7461,7 @@ static void execute_decode_slices(H264Context *h, int context_count){ } 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]; |