summaryrefslogtreecommitdiffstats
path: root/stream/stream_dvdnav.h
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-08-11 20:44:29 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:15:48 +0200
commite2d5a13f76efd3234d2cfab422c12f6ada5ac201 (patch)
tree4ef283f2672bc0e00cb9b567d2ad353fc1ff2a2d /stream/stream_dvdnav.h
parenta62d145bdf549bbd90a97b9fc39385a13ea0471d (diff)
downloadmpv-e2d5a13f76efd3234d2cfab422c12f6ada5ac201.tar.bz2
mpv-e2d5a13f76efd3234d2cfab422c12f6ada5ac201.tar.xz
stream_dvd[nav]: Add const qualifiers to string arguments
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31957 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/stream_dvdnav.h')
-rw-r--r--stream/stream_dvdnav.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/stream_dvdnav.h b/stream/stream_dvdnav.h
index 656d1b8e62..97c2cb6d71 100644
--- a/stream/stream_dvdnav.h
+++ b/stream/stream_dvdnav.h
@@ -30,9 +30,9 @@ typedef struct {
int mp_dvdnav_number_of_subs(stream_t *stream);
int mp_dvdnav_aid_from_audio_num(stream_t *stream, int audio_num);
-int mp_dvdnav_aid_from_lang(stream_t *stream, unsigned char *language);
+int mp_dvdnav_aid_from_lang(stream_t *stream, const unsigned char *language);
int mp_dvdnav_lang_from_aid(stream_t *stream, int id, unsigned char *buf);
-int mp_dvdnav_sid_from_lang(stream_t *stream, unsigned char *language);
+int mp_dvdnav_sid_from_lang(stream_t *stream, const unsigned char *language);
int mp_dvdnav_lang_from_sid(stream_t *stream, int sid, unsigned char *buf);
void mp_dvdnav_handle_input(stream_t *stream, int cmd, int *button);
void mp_dvdnav_update_mouse_pos(stream_t *stream, int32_t x, int32_t y, int* button);