mirror of https://github.com/mpv-player/mpv
Make dvd_audio_stream_types and dvd_audio_stream_channels const
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25713 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
e351bee5a9
commit
16f7105ffc
|
@ -133,8 +133,8 @@ static void dvd_set_speed(char *device, unsigned speed)
|
|||
#endif
|
||||
#endif
|
||||
|
||||
char * dvd_audio_stream_types[8] = { "ac3","unknown","mpeg1","mpeg2ext","lpcm","unknown","dts" };
|
||||
char * dvd_audio_stream_channels[6] = { "mono", "stereo", "unknown", "unknown", "5.1/6.1", "5.1" };
|
||||
const char * const dvd_audio_stream_types[8] = { "ac3","unknown","mpeg1","mpeg2ext","lpcm","unknown","dts" };
|
||||
const char * const dvd_audio_stream_channels[6] = { "mono", "stereo", "unknown", "unknown", "5.1/6.1", "5.1" };
|
||||
|
||||
|
||||
static struct stream_priv_s {
|
||||
|
|
Loading…
Reference in New Issue