mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 00:58:12 +00:00
matroska: remove dead assignments
This commit is contained in:
parent
0d6f0801f5
commit
d29ba8d48f
1 changed files with 2 additions and 3 deletions
|
@ -121,8 +121,7 @@ static GstStaticPadTemplate subtitle_src_templ =
|
||||||
GST_PAD_SOMETIMES,
|
GST_PAD_SOMETIMES,
|
||||||
GST_STATIC_CAPS ("text/plain; application/x-ssa; application/x-ass; "
|
GST_STATIC_CAPS ("text/plain; application/x-ssa; application/x-ass; "
|
||||||
"application/x-usf; video/x-dvd-subpicture; "
|
"application/x-usf; video/x-dvd-subpicture; "
|
||||||
"subpicture/x-pgs; subtitle/x-kate; "
|
"subpicture/x-pgs; subtitle/x-kate; " "application/x-subtitle-unknown")
|
||||||
"application/x-subtitle-unknown")
|
|
||||||
);
|
);
|
||||||
|
|
||||||
static GstFlowReturn gst_matroska_demux_parse_contents (GstMatroskaDemux *
|
static GstFlowReturn gst_matroska_demux_parse_contents (GstMatroskaDemux *
|
||||||
|
@ -706,7 +705,7 @@ gst_matroska_decompress_data (GstMatroskaTrackEncoding * enc,
|
||||||
bzstream.opaque = NULL;
|
bzstream.opaque = NULL;
|
||||||
orig_size = size;
|
orig_size = size;
|
||||||
|
|
||||||
if ((result = BZ2_bzDecompressInit (&bzstream, 0, 0)) != BZ_OK) {
|
if (BZ2_bzDecompressInit (&bzstream, 0, 0) != BZ_OK) {
|
||||||
GST_WARNING ("bzip2 initialization failed.");
|
GST_WARNING ("bzip2 initialization failed.");
|
||||||
ret = FALSE;
|
ret = FALSE;
|
||||||
goto out;
|
goto out;
|
||||||
|
|
Loading…
Reference in a new issue