From 5206db7e6081b23c6025d3fdcd88860e1dd678a7 Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 22 Feb 2010 14:04:39 +0000 Subject: [PATCH] Mark member info of struct ad_functions_s as const. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30705 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/ad.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmpcodecs/ad.h b/libmpcodecs/ad.h index 1286bd327c..1fa94d2e9e 100644 --- a/libmpcodecs/ad.h +++ b/libmpcodecs/ad.h @@ -27,7 +27,7 @@ typedef mp_codec_info_t ad_info_t; /* interface of video decoder drivers */ typedef struct ad_functions_s { - ad_info_t *info; + const ad_info_t *info; int (*preinit)(sh_audio_t *sh); int (*init)(sh_audio_t *sh); void (*uninit)(sh_audio_t *sh);