diff options
| author | Edward Hervey <bilboed@bilboed.com> | 2009-08-09 09:43:29 +0200 | 
|---|---|---|
| committer | Edward Hervey <bilboed@bilboed.com> | 2009-08-10 09:58:33 +0200 | 
| commit | d29ba8d48f2dcaa0cf3d59ebf77b39b5f6184418 (patch) | |
| tree | 39d28c1b82ad1d0112c4e108537453c207769677 | |
| parent | 0d6f0801f5c9052f40091cabe30b64cc487fe7de (diff) | |
matroska: remove dead assignments
| -rw-r--r-- | gst/matroska/matroska-demux.c | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c index 1ffe8c49..b3669197 100644 --- a/gst/matroska/matroska-demux.c +++ b/gst/matroska/matroska-demux.c @@ -121,8 +121,7 @@ static GstStaticPadTemplate subtitle_src_templ =      GST_PAD_SOMETIMES,      GST_STATIC_CAPS ("text/plain; application/x-ssa; application/x-ass; "          "application/x-usf; video/x-dvd-subpicture; " -        "subpicture/x-pgs; subtitle/x-kate; " -        "application/x-subtitle-unknown") +        "subpicture/x-pgs; subtitle/x-kate; " "application/x-subtitle-unknown")      );  static GstFlowReturn gst_matroska_demux_parse_contents (GstMatroskaDemux * @@ -706,7 +705,7 @@ gst_matroska_decompress_data (GstMatroskaTrackEncoding * enc,      bzstream.opaque = NULL;      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.");        ret = FALSE;        goto out; | 
