summaryrefslogtreecommitdiffstats
path: root/libmpdemux/stream.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-08 23:00:01 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-08 23:00:01 +0000
commitcd8540ab8cdc8cb314c7ca3ac9107b65577e0fcf (patch)
treebea6b35ad9d4c60b6a6516e554a35baa53771bc4 /libmpdemux/stream.h
parent095a1cad2d136cd5e0e7eec7c8e012e1cfdfe766 (diff)
downloadmpv-cd8540ab8cdc8cb314c7ca3ac9107b65577e0fcf.tar.bz2
mpv-cd8540ab8cdc8cb314c7ca3ac9107b65577e0fcf.tar.xz
removed messy global 'tv_handle', use stream->priv for that purpose
note: i couldn't test it (only compile test) may be broken :( we're going to an unified demuxer API - required for modularization git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7330 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/stream.h')
-rw-r--r--libmpdemux/stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/stream.h b/libmpdemux/stream.h
index b1fe824c77..03ceba1112 100644
--- a/libmpdemux/stream.h
+++ b/libmpdemux/stream.h
@@ -42,7 +42,7 @@ typedef struct {
int eof;
unsigned int cache_pid;
void* cache_data;
- void* priv; // used for DVD
+ void* priv; // used for DVD, TV, RTSP etc
unsigned char buffer[STREAM_BUFFER_SIZE>VCD_SECTOR_SIZE?STREAM_BUFFER_SIZE:VCD_SECTOR_SIZE];
#ifdef STREAMING
streaming_ctrl_t *streaming_ctrl;