mirror of https://github.com/mpv-player/mpv
stream: minor cleanups
Remove unused stream type constants. Move some now DVD specific crap to stream_dvd.c.
This commit is contained in:
parent
b443f8471f
commit
ea1650fcc3
|
@ -32,11 +32,9 @@
|
|||
enum streamtype {
|
||||
STREAMTYPE_GENERIC = 0,
|
||||
STREAMTYPE_FILE,
|
||||
STREAMTYPE_RADIO,
|
||||
STREAMTYPE_DVB,
|
||||
STREAMTYPE_DVD,
|
||||
STREAMTYPE_BLURAY,
|
||||
STREAMTYPE_PVR,
|
||||
STREAMTYPE_TV,
|
||||
STREAMTYPE_MF,
|
||||
STREAMTYPE_EDL,
|
||||
|
@ -245,13 +243,6 @@ bool stream_check_interrupt(struct stream *s);
|
|||
|
||||
bool stream_manages_timeline(stream_t *s);
|
||||
|
||||
typedef struct {
|
||||
int id; // 0 - 31 mpeg; 128 - 159 ac3; 160 - 191 pcm
|
||||
int language;
|
||||
int type;
|
||||
int channels;
|
||||
} stream_language_t;
|
||||
|
||||
void mp_url_unescape_inplace(char *buf);
|
||||
char *mp_url_escape(void *talloc_ctx, const char *s, const char *ok);
|
||||
|
||||
|
|
|
@ -64,6 +64,13 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
int id; // 0 - 31 mpeg; 128 - 159 ac3; 160 - 191 pcm
|
||||
int language;
|
||||
int type;
|
||||
int channels;
|
||||
} stream_language_t;
|
||||
|
||||
typedef struct {
|
||||
dvd_reader_t *dvd;
|
||||
dvd_file_t *title;
|
||||
|
|
|
@ -1609,7 +1609,6 @@ pvr_stream_open (stream_t *stream)
|
|||
}
|
||||
|
||||
stream->priv = pvr;
|
||||
stream->type = STREAMTYPE_PVR;
|
||||
stream->fill_buffer = pvr_stream_read;
|
||||
stream->close = pvr_stream_close;
|
||||
stream->control = pvr_stream_control;
|
||||
|
|
Loading…
Reference in New Issue