From 0a1a5707bfbcd8d35655499edcf6a7118aa519e7 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 22 Oct 2015 01:26:34 +0200 Subject: demux: cosmetics: remove indirection Let's not waste precious lines. --- demux/demux.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'demux') diff --git a/demux/demux.c b/demux/demux.c index 7ca3835388..53fb5c6cad 100644 --- a/demux/demux.c +++ b/demux/demux.c @@ -428,10 +428,8 @@ static bool read_packet(struct demux_internal *in) pthread_mutex_lock(&in->lock); if (eof) { - for (int n = 0; n < in->d_buffer->num_streams; n++) { - struct demux_stream *ds = in->d_buffer->streams[n]->ds; - ds->eof = true; - } + for (int n = 0; n < in->d_buffer->num_streams; n++) + in->d_buffer->streams[n]->ds->eof = true; // If we had EOF previously, then don't wakeup (avoids wakeup loop) if (!in->last_eof) { if (in->wakeup_cb) -- cgit v1.2.3