mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
qtmux: remove temp file when reset/finalize
This commit is contained in:
parent
1d1ffe234f
commit
3e6a415e52
1 changed files with 3 additions and 9 deletions
|
@ -297,6 +297,7 @@ gst_qt_mux_reset (GstQTMux * qtmux, gboolean alloc)
|
||||||
}
|
}
|
||||||
if (qtmux->fast_start_file) {
|
if (qtmux->fast_start_file) {
|
||||||
fclose (qtmux->fast_start_file);
|
fclose (qtmux->fast_start_file);
|
||||||
|
g_remove (qtmux->fast_start_file_path);
|
||||||
qtmux->fast_start_file = NULL;
|
qtmux->fast_start_file = NULL;
|
||||||
}
|
}
|
||||||
if (qtmux->moov_recov_file) {
|
if (qtmux->moov_recov_file) {
|
||||||
|
@ -1104,13 +1105,6 @@ gst_qt_mux_send_buffered_data (GstQTMux * qtmux, guint64 * offset)
|
||||||
if (buf)
|
if (buf)
|
||||||
gst_buffer_unref (buf);
|
gst_buffer_unref (buf);
|
||||||
|
|
||||||
exit:
|
|
||||||
/* best cleaning up effort, eat possible error */
|
|
||||||
fclose (qtmux->fast_start_file);
|
|
||||||
qtmux->fast_start_file = NULL;
|
|
||||||
|
|
||||||
/* FIXME maybe delete temporary file, or let the system handle that ? */
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
/* ERRORS */
|
/* ERRORS */
|
||||||
|
@ -1119,14 +1113,14 @@ flush_failed:
|
||||||
GST_ELEMENT_ERROR (qtmux, RESOURCE, WRITE,
|
GST_ELEMENT_ERROR (qtmux, RESOURCE, WRITE,
|
||||||
("Failed to flush temporary file"), GST_ERROR_SYSTEM);
|
("Failed to flush temporary file"), GST_ERROR_SYSTEM);
|
||||||
ret = GST_FLOW_ERROR;
|
ret = GST_FLOW_ERROR;
|
||||||
goto exit;
|
return ret;
|
||||||
}
|
}
|
||||||
seek_failed:
|
seek_failed:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (qtmux, RESOURCE, SEEK,
|
GST_ELEMENT_ERROR (qtmux, RESOURCE, SEEK,
|
||||||
("Failed to seek temporary file"), GST_ERROR_SYSTEM);
|
("Failed to seek temporary file"), GST_ERROR_SYSTEM);
|
||||||
ret = GST_FLOW_ERROR;
|
ret = GST_FLOW_ERROR;
|
||||||
goto exit;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue