]> git.sesse.net Git - vlc/commit
input: waiting and flushing states should be mutually exclusive
authorFelix Abecassis <felix.abecassis@gmail.com>
Tue, 2 Sep 2014 09:00:23 +0000 (11:00 +0200)
committerFelix Abecassis <felix.abecassis@gmail.com>
Tue, 2 Sep 2014 09:49:22 +0000 (11:49 +0200)
commita1603d9e69629a8168f5babce3388307bb677341
tree75e135bc9d7d9594722ab110dadec1124801891d
parent5810e8b0beece4faefddc6ba0d7c7dff1cc0eae1
input: waiting and flushing states should be mutually exclusive

A crash could occur in the following situation:
1) A video decoder is created and starts waiting for the first picture:
   b_waiting = true, b_first = true

2) The first picture is received but the decoder is still in waiting mode:
   b_waiting = true, b_first = false

3) A second picture is received, the decoder is now waiting in
DecoderWaitUnblock().

4) From the input thread, an EOF event is received, EsOutChangePosition is
called and sets the decoder in flushing mode.

5) The decoder thread wakes up and exits DecoderWaitUnblock because
b_flushing is true. However this triggers the assertion in
DecoderDecodeVideo since we have b_waiting && !b_first.

Fix #11892, #12041
src/input/decoder.c