mxfmux: Fix EOS logic again

This commit is contained in:
Sebastian Dröge 2009-05-09 15:48:41 +02:00
parent 8692ae2a9d
commit 18f8c9b0b4

View file

@ -1150,10 +1150,11 @@ gst_mxf_mux_handle_eos (GstMXFMux * mux)
best = cpad; best = cpad;
break; break;
} }
} else if (have_data && !l->next) { }
if (have_data && !l->next) {
mux->last_gc_position++; mux->last_gc_position++;
mux->last_gc_timestamp = next_gc_timestamp; mux->last_gc_timestamp = next_gc_timestamp;
have_data = FALSE;
best = NULL; best = NULL;
break; break;
} }