1
mirror of https://github.com/mpv-player/mpv synced 2024-12-24 07:33:46 +01:00

Mark all stream_info_t as const

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25239 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-12-02 13:22:53 +00:00
parent 6e6214052c
commit cd3d3369e1
25 changed files with 53 additions and 53 deletions

View File

@ -870,7 +870,7 @@ static int open_s(stream_t *stream,int mode, void* opts, int* file_format) {
return STREAM_OK;
}
stream_info_t stream_info_asf = {
const stream_info_t stream_info_asf = {
"mms and mms over http streaming",
"null",
"Bertrand, Reimar Doeffinger, Albeu",

View File

@ -954,7 +954,7 @@ static int open_s2(stream_t *stream,int mode, void* opts, int* file_format) {
}
stream_info_t stream_info_http1 = {
const stream_info_t stream_info_http1 = {
"http streaming",
"null",
"Bertrand, Albeau, Reimar Doeffinger, Arpi?",
@ -965,7 +965,7 @@ stream_info_t stream_info_http1 = {
0 // Urls are an option string
};
stream_info_t stream_info_http2 = {
const stream_info_t stream_info_http2 = {
"http streaming",
"null",
"Bertrand, Albeu, Arpi? who?",

View File

@ -897,7 +897,7 @@ fail:
}
stream_info_t stream_info_pnm = {
const stream_info_t stream_info_pnm = {
"RealNetworks pnm",
"pnm",
"Arpi, xine team",

View File

@ -36,57 +36,57 @@
//#include "vcd_read_bincue.h"
#ifdef HAVE_VCD
extern stream_info_t stream_info_vcd;
extern const stream_info_t stream_info_vcd;
#endif
#ifdef HAVE_CDDA
extern stream_info_t stream_info_cdda;
extern const stream_info_t stream_info_cdda;
#endif
#ifdef MPLAYER_NETWORK
extern stream_info_t stream_info_netstream;
extern stream_info_t stream_info_pnm;
extern stream_info_t stream_info_asf;
extern stream_info_t stream_info_rtsp;
extern stream_info_t stream_info_rtp;
extern stream_info_t stream_info_udp;
extern stream_info_t stream_info_http1;
extern stream_info_t stream_info_http2;
extern const stream_info_t stream_info_netstream;
extern const stream_info_t stream_info_pnm;
extern const stream_info_t stream_info_asf;
extern const stream_info_t stream_info_rtsp;
extern const stream_info_t stream_info_rtp;
extern const stream_info_t stream_info_udp;
extern const stream_info_t stream_info_http1;
extern const stream_info_t stream_info_http2;
#endif
#ifdef HAS_DVBIN_SUPPORT
extern stream_info_t stream_info_dvb;
extern const stream_info_t stream_info_dvb;
#endif
#ifdef USE_TV
extern stream_info_t stream_info_tv;
extern const stream_info_t stream_info_tv;
#endif
#ifdef USE_RADIO
extern stream_info_t stream_info_radio;
extern const stream_info_t stream_info_radio;
#endif
#ifdef HAVE_PVR
extern stream_info_t stream_info_pvr;
extern const stream_info_t stream_info_pvr;
#endif
#ifdef HAVE_FTP
extern stream_info_t stream_info_ftp;
extern const stream_info_t stream_info_ftp;
#endif
#ifdef HAVE_VSTREAM
extern stream_info_t stream_info_vstream;
extern const stream_info_t stream_info_vstream;
#endif
#ifdef USE_DVDNAV
extern stream_info_t stream_info_dvdnav;
extern const stream_info_t stream_info_dvdnav;
#endif
#ifdef LIBSMBCLIENT
extern stream_info_t stream_info_smb;
extern const stream_info_t stream_info_smb;
#endif
#ifdef STREAMING_LIVE555
extern stream_info_t stream_info_sdp;
extern stream_info_t stream_info_rtsp_sip;
extern const stream_info_t stream_info_sdp;
extern const stream_info_t stream_info_rtsp_sip;
#endif
extern stream_info_t stream_info_cue;
extern stream_info_t stream_info_null;
extern stream_info_t stream_info_mf;
extern stream_info_t stream_info_file;
extern const stream_info_t stream_info_cue;
extern const stream_info_t stream_info_null;
extern const stream_info_t stream_info_mf;
extern const stream_info_t stream_info_file;
#ifdef USE_DVDREAD
extern stream_info_t stream_info_ifo;
extern stream_info_t stream_info_dvd;
extern const stream_info_t stream_info_ifo;
extern const stream_info_t stream_info_dvd;
#endif
static const stream_info_t* const auto_open_streams[] = {

View File

@ -382,7 +382,7 @@ static void close_cdda(stream_t* s) {
free(p);
}
stream_info_t stream_info_cdda = {
const stream_info_t stream_info_cdda = {
"CDDA",
"cdda",
"Albeu",

View File

@ -591,7 +591,7 @@ static int open_s(stream_t *stream,int mode, void* opts, int* file_format) {
return STREAM_OK;
}
stream_info_t stream_info_cue = {
const stream_info_t stream_info_cue = {
"CUE track",
"cue",
"Albeu",

View File

@ -840,7 +840,7 @@ dvb_config_t *dvb_get_config(void)
stream_info_t stream_info_dvb = {
const stream_info_t stream_info_dvb = {
"Dvb Input",
"dvbin",
"Nico",

View File

@ -1110,7 +1110,7 @@ ifo_stream_open (stream_t *stream, int mode, void *opts, int *file_format)
return open_s(stream, mode, dvd_priv, file_format);
}
stream_info_t stream_info_dvd = {
const stream_info_t stream_info_dvd = {
"DVD stream",
"null",
"",
@ -1121,7 +1121,7 @@ stream_info_t stream_info_dvd = {
1 // Urls are an option string
};
stream_info_t stream_info_ifo = {
const stream_info_t stream_info_ifo = {
"DVD IFO input",
"ifo",
"Benjamin Zores",

View File

@ -725,7 +725,7 @@ void mp_dvdnav_get_highlight (stream_t *stream, nav_highlight_t *hl) {
hl->ey = hlev.ey;
}
stream_info_t stream_info_dvdnav = {
const stream_info_t stream_info_dvdnav = {
"DVDNAV stream",
"null",
"",

View File

@ -175,7 +175,7 @@ static int open_f(stream_t *stream,int mode, void* opts, int* file_format) {
return STREAM_OK;
}
stream_info_t stream_info_file = {
const stream_info_t stream_info_file = {
"File",
"file",
"Albeu",

View File

@ -458,7 +458,7 @@ static int open_f(stream_t *stream,int mode, void* opts, int* file_format) {
return STREAM_OK;
}
stream_info_t stream_info_ftp = {
const stream_info_t stream_info_ftp = {
"File Transfer Protocol",
"ftp",
"Albeu",

View File

@ -96,7 +96,7 @@ static int open_live_sdp(stream_t *stream,int mode, void* opts, int* file_format
}
stream_info_t stream_info_rtsp_sip = {
const stream_info_t stream_info_rtsp_sip = {
"standard RTSP and SIP",
"RTSP and SIP",
"Ross Finlayson",
@ -107,7 +107,7 @@ stream_info_t stream_info_rtsp_sip = {
0 // Urls are an option string
};
stream_info_t stream_info_sdp = {
const stream_info_t stream_info_sdp = {
"SDP stream descriptor",
"SDP",
"Ross Finlayson",

View File

@ -34,7 +34,7 @@ mf_stream_open (stream_t *stream, int mode, void *opts, int *file_format)
return STREAM_OK;
}
stream_info_t stream_info_mf = {
const stream_info_t stream_info_mf = {
"Multiple files input",
"mf",
"Benjamin Zores, Albeu",

View File

@ -64,7 +64,7 @@ static int rtsp_streaming_open (stream_t *stream, int mode, void *opts,
return STREAM_OK;
}
stream_info_t stream_info_rtsp = {
const stream_info_t stream_info_rtsp = {
"RTSP streaming",
"rtsp",
"Alessandro Molina",

View File

@ -296,7 +296,7 @@ static int open_s(stream_t *stream,int mode, void* opts, int* file_format) {
return STREAM_ERROR;
}
stream_info_t stream_info_netstream = {
const stream_info_t stream_info_netstream = {
"Net stream",
"netstream",
"Albeu",

View File

@ -13,7 +13,7 @@ static int open_s(stream_t *stream,int mode, void* opts, int* file_format) {
}
stream_info_t stream_info_null = {
const stream_info_t stream_info_null = {
"Null stream",
"null",
"Albeu",

View File

@ -1766,7 +1766,7 @@ pvr_force_freq_step (stream_t *stream, int step)
return force_freq_step (pvr, step);
}
stream_info_t stream_info_pvr = {
const stream_info_t stream_info_pvr = {
"V4L2 MPEG Input (a.k.a PVR)",
"pvr",
"Benjamin Zores",

View File

@ -1252,7 +1252,7 @@ static void close_s(struct stream_st * stream){
stream->priv=NULL;
}
stream_info_t stream_info_radio = {
const stream_info_t stream_info_radio = {
"Radio stream",
"Radio",
"Vladimir Voroshilov",

View File

@ -103,7 +103,7 @@ rtp_stream_open (stream_t *stream, int mode, void *opts, int *file_format)
return STREAM_OK;
}
stream_info_t stream_info_rtp = {
const stream_info_t stream_info_rtp = {
"MPEG over RTP streaming",
"rtp",
"Dave Chapman, Benjamin Zores",

View File

@ -167,7 +167,7 @@ rtsp_streaming_open (stream_t *stream, int mode, void *opts, int *file_format)
return STREAM_OK;
}
stream_info_t stream_info_rtsp = {
const stream_info_t stream_info_rtsp = {
"RTSP streaming",
"rtsp",
"Benjamin Zores, Roberto Togni",

View File

@ -153,7 +153,7 @@ static int open_f (stream_t *stream, int mode, void *opts, int* file_format) {
return STREAM_OK;
}
stream_info_t stream_info_smb = {
const stream_info_t stream_info_smb = {
"Server Message Block",
"smb",
"M. Tourne",

View File

@ -113,7 +113,7 @@ tv_stream_open (stream_t *stream, int mode, void *opts, int *file_format)
return STREAM_OK;
}
stream_info_t stream_info_tv = {
const stream_info_t stream_info_tv = {
"TV Input",
"tv",
"Benjamin Zores, Albeu",

View File

@ -95,7 +95,7 @@ udp_stream_open (stream_t *stream, int mode, void *opts, int *file_format)
return STREAM_OK;
}
stream_info_t stream_info_udp = {
const stream_info_t stream_info_udp = {
"MPEG over UDP streaming",
"udp",
"Dave Chapman, Benjamin Zores",

View File

@ -176,7 +176,7 @@ static int open_s(stream_t *stream,int mode, void* opts, int* file_format) {
return STREAM_OK;
}
stream_info_t stream_info_vcd = {
const stream_info_t stream_info_vcd = {
"Video CD",
"vcd",
"Albeu",

View File

@ -167,7 +167,7 @@ static int open_s(stream_t *stream, int mode, void* opts, int* file_format) {
return STREAM_OK;
}
stream_info_t stream_info_vstream = {
const stream_info_t stream_info_vstream = {
"vstream client",
"vstream",
"Joey",