diff options
author | Diego Biurrun <diego@biurrun.de> | 2015-10-30 15:26:25 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-13 18:44:01 +0100 |
commit | 800d91d348c89fc8ca3fbec7696ab1ec8787acc6 (patch) | |
tree | 7a6a89666e2fad6cf14a90a2b5949b35fe194dd7 /libavcodec/libschroedinger.c | |
parent | d316f9cefcd854071985c6f524a9a15348240264 (diff) | |
download | ffmpeg-800d91d348c89fc8ca3fbec7696ab1ec8787acc6.tar.gz |
Drop pointless void* casts
Diffstat (limited to 'libavcodec/libschroedinger.c')
-rw-r--r-- | libavcodec/libschroedinger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libschroedinger.c b/libavcodec/libschroedinger.c index 16e0fe89b9..af3000f371 100644 --- a/libavcodec/libschroedinger.c +++ b/libavcodec/libschroedinger.c @@ -200,7 +200,7 @@ SchroFrame *ff_create_schro_frame(AVCodecContext *avctx, p_frame->format = schro_frame_fmt; p_frame->width = y_width; p_frame->height = y_height; - schro_frame_set_free_callback(p_frame, free_schro_frame, (void *)p_pic); + schro_frame_set_free_callback(p_frame, free_schro_frame, p_pic); for (i = 0; i < 3; ++i) { p_frame->components[i].width = i ? uv_width : y_width; |