[FFmpeg-cvslog] vda: removes useless casts.

Sebastien Zwickert git at videolan.org
Mon Nov 14 23:23:23 CET 2011


ffmpeg | branch: master | Sebastien Zwickert <dilaroga at free.fr> | Mon Nov 14 21:35:18 2011 +0100| [c7fa3eeab97e5b6a2de63f24bcbfb57ea81c5c60] | committer: Sebastien Zwickert

vda: removes useless casts.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c7fa3eeab97e5b6a2de63f24bcbfb57ea81c5c60
---

 libavcodec/vda.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/vda.c b/libavcodec/vda.c
index 9016768..4675e0b 100644
--- a/libavcodec/vda.c
+++ b/libavcodec/vda.c
@@ -124,7 +124,7 @@ static void vda_decoder_callback (void *vda_hw_ctx,
     if (vda_ctx->cv_pix_fmt_type != CVPixelBufferGetPixelFormatType(image_buffer))
         return;
 
-    new_frame = (vda_frame *)av_mallocz(sizeof(vda_frame));
+    new_frame = av_mallocz(sizeof(vda_frame));
     new_frame->next_frame = NULL;
     new_frame->cv_buffer = CVPixelBufferRetain(image_buffer);
     new_frame->pts = vda_pts_from_dictionary(user_info);
@@ -219,7 +219,7 @@ int ff_vda_create_decoder(struct vda_context *vda_ctx,
     status = VDADecoderCreate( config_info,
                                buffer_attributes,
                                (VDADecoderOutputCallback *)vda_decoder_callback,
-                               (void *)vda_ctx,
+                               vda_ctx,
                                &vda_ctx->decoder );
 
     CFRelease(height);



More information about the ffmpeg-cvslog mailing list