diff options
author | wm4 <wm4@nowhere> | 2015-03-29 13:37:14 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-03-29 13:37:14 +0200 |
commit | f82ddf1d0b05ceecfd3316ebb18dce99c51b935c (patch) | |
tree | 9a9318500e87878a53334695e5dc7ff33317f058 /stream | |
parent | b561ec99ff76d677182b71062e24a3cf40c35901 (diff) |
stream_rar: update comment
The stream filter non-sense was removed, which makes it much easier.
Diffstat (limited to 'stream')
-rw-r--r-- | stream/stream_rar.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/stream/stream_rar.c b/stream/stream_rar.c index 510babf949..3ba689b539 100644 --- a/stream/stream_rar.c +++ b/stream/stream_rar.c @@ -43,16 +43,14 @@ This works as follows: - stream_open() with file01.rar - is opened as normal file (stream_file.c or others) first - - the rar code in demux_playlist.c detects it + - demux_rar.c detects it - if multi-part, opens file02.rar, file03.rar, etc. as actual streams - (recursive opening is prevented with the STREAM_NO_FILTERS flag) - - it returns a playlist like this to the player: + - it returns a playlist with entries like this to the player: rar://bla01.rar|subfile.mkv (one such entry for each file contained in the rar) - stream_open() with the playlist entry, e.g. rar://bla01.rar|subfile.mkv - leads to rar_entry_open() - opens bla01.rar etc. again as actual streams - (again, STREAM_NO_FILTERS to open the actual files) - read accesses go into subfile.mkv contained in the rar file(s) */ |