summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-16 01:20:30 +0000
committerreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-16 01:20:30 +0000
commitd427579f79d6b22ce8b65bac27651be03621d23f (patch)
tree82e51e054655f799105ea429ae90c8c92d6f4fe1 /libvo
parent36e5e1a3fbdca811942796a2487aada40aa35bd9 (diff)
downloadmpv-d427579f79d6b22ce8b65bac27651be03621d23f.tar.bz2
mpv-d427579f79d6b22ce8b65bac27651be03621d23f.tar.xz
marks several read-only string parameters and function return-values which can only be used read-only as const. Patch by Stefan Huehner, stefan _AT huener-org
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19113 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/video_out.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/video_out.h b/libvo/video_out.h
index 369aa32fc8..b7b214f642 100644
--- a/libvo/video_out.h
+++ b/libvo/video_out.h
@@ -166,7 +166,7 @@ typedef struct vo_functions_s
} vo_functions_t;
-char *vo_format_name(int format);
+const char *vo_format_name(int format);
int vo_init(void);
vo_functions_t* init_best_video_out(char** vo_list);