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/mpeg12.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/mpeg12.c')
-rw-r--r-- | libavcodec/mpeg12.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index add6a58a0a..08dea404b4 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -2309,7 +2309,7 @@ static int decode_chunks(AVCodecContext *avctx, if(avctx->thread_count > 1){ int i; - avctx->execute(avctx, slice_decode_thread, (void**)&(s2->thread_context[0]), NULL, s->slice_count, sizeof(void*)); + avctx->execute(avctx, slice_decode_thread, &s2->thread_context[0], NULL, s->slice_count, sizeof(void*)); for(i=0; i<s->slice_count; i++) s2->error_count += s2->thread_context[i]->error_count; } |