demux: reword an outdated comment

This commit is contained in:
wm4 2018-01-17 07:07:19 +01:00 committed by Kevin Mitchell
parent 082029f850
commit 4d87c700e0
No known key found for this signature in database
GPG Key ID: 559A34B46A917232
1 changed files with 1 additions and 2 deletions

View File

@ -235,8 +235,7 @@ typedef struct demuxer {
// Since the demuxer can run in its own thread, and the stream is not
// thread-safe, only the demuxer is allowed to access the stream directly.
// You can freely use demux_stream_control() to send STREAM_CTRLs, or use
// demux_pause() to get exclusive access to the stream.
// You can freely use demux_stream_control() to send STREAM_CTRLs.
// Also note that the stream can get replaced if fully_read is set.
struct stream *stream;
} demuxer_t;