]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/options.c
options: Fix warning about incompatible pointer type
[ffmpeg] / libavcodec / options.c
index c8f770a7c8e2876edb0664850de36810f7533d2b..5dfc9c8241cb38f2f93ed5a790eadd3a8ee281e8 100644 (file)
@@ -65,8 +65,9 @@ static const AVClass *codec_child_class_next(const AVClass *prev)
     return NULL;
 }
 
-static AVClassCategory get_category(AVCodecContext *avctx)
+static AVClassCategory get_category(void *ptr)
 {
+    AVCodecContext* avctx = ptr;
     if(avctx->codec && avctx->codec->decode) return AV_CLASS_CATEGORY_DECODER;
     else                                     return AV_CLASS_CATEGORY_ENCODER;
 }
@@ -80,7 +81,7 @@ static const AVClass av_codec_context_class = {
     .child_next              = codec_child_next,
     .child_class_next        = codec_child_class_next,
     .category                = AV_CLASS_CATEGORY_ENCODER,
-    .get_category            = (void*)get_category,
+    .get_category            = get_category,
 };
 
 #if FF_API_ALLOC_CONTEXT