mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
qtdemux: skip redundant check
!got_moov is already checked the line above
This commit is contained in:
parent
bf250a90dc
commit
70fca21c28
1 changed files with 1 additions and 1 deletions
|
@ -6884,7 +6884,7 @@ qtdemux_parse_trak (GstQTDemux * qtdemux, GNode * trak)
|
|||
goto corrupt_file;
|
||||
|
||||
if (!qtdemux->got_moov) {
|
||||
if (!qtdemux->got_moov && qtdemux_find_stream (qtdemux, track_id))
|
||||
if (qtdemux_find_stream (qtdemux, track_id))
|
||||
goto existing_stream;
|
||||
stream = _create_stream ();
|
||||
stream->track_id = track_id;
|
||||
|
|
Loading…
Reference in a new issue