summaryrefslogtreecommitdiff
path: root/libavcodec/libschroedinger.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-03-31 16:38:37 -0300
committerJames Almer <jamrial@gmail.com>2017-03-31 16:38:37 -0300
commitb725b482c6af996cb1922c48c3b32c3a6e857ea1 (patch)
treecdce29580a057ea3f7f96c8023fe5a476661848f /libavcodec/libschroedinger.c
parentfc2a94219df7eccd540e0dac42c27cd9e35148de (diff)
parent800d91d348c89fc8ca3fbec7696ab1ec8787acc6 (diff)
Merge commit '800d91d348c89fc8ca3fbec7696ab1ec8787acc6'
* commit '800d91d348c89fc8ca3fbec7696ab1ec8787acc6': Drop pointless void* casts Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/libschroedinger.c')
-rw-r--r--libavcodec/libschroedinger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libschroedinger.c b/libavcodec/libschroedinger.c
index 0b02b2c240..4bb0f12d89 100644
--- a/libavcodec/libschroedinger.c
+++ b/libavcodec/libschroedinger.c
@@ -199,7 +199,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;