]> git.sesse.net Git - vlc/commitdiff
discard image and mjpeg demuxers in case of mxpeg
authorSébastien Escudier <sebastien-devel@celeos.eu>
Fri, 10 Feb 2012 14:14:43 +0000 (15:14 +0100)
committerSébastien Escudier <sebastien-devel@celeos.eu>
Mon, 20 Feb 2012 13:04:02 +0000 (14:04 +0100)
modules/demux/Modules.am
modules/demux/image.c
modules/demux/mjpeg.c
modules/demux/mxpeg_helper.h [new file with mode: 0644]

index 503facc0a1278091e585acfde15e68360553cc0b..69263611c923fbca3e63588e3adc812a3fa1e80b 100644 (file)
@@ -15,7 +15,7 @@ SOURCES_ps = ps.c ps.h
 SOURCES_mod = mod.c dummy.cpp
 SOURCES_pva = pva.c
 SOURCES_aiff = aiff.c
-SOURCES_mjpeg = mjpeg.c
+SOURCES_mjpeg = mjpeg.c mxpeg_helper.h
 SOURCES_subtitle = subtitle.c
 SOURCES_ty = ty.c ../codec/cc.h
 SOURCES_vobsub = vobsub.c vobsub.h
@@ -31,7 +31,7 @@ SOURCES_smf = smf.c
 SOURCES_gme = gme.c dummy.cpp
 SOURCES_sid = sid.cpp
 SOURCES_dirac = dirac.c
-SOURCES_image = image.c
+SOURCES_image = image.c mxpeg_helper.h
 SOURCES_demux_stl = stl.c
 
 libvlc_LTLIBRARIES += \
index f2fb8ac542ae03557238db1e938e8d3c343b433e..021f122bd0974723a6f9e3e09307a1e1d7cec8c7 100644 (file)
@@ -33,6 +33,7 @@
 #include <vlc_plugin.h>
 #include <vlc_demux.h>
 #include <vlc_image.h>
+#include "mxpeg_helper.h"
 
 /*****************************************************************************
  * Module descriptor
@@ -525,6 +526,9 @@ static const image_format_t formats[] = {
     { .codec = VLC_CODEC_PNM,
       .detect = IsPnm,
     },
+    { .codec = VLC_CODEC_MXPEG,
+      .detect = IsMxpeg,
+    },
     { .codec = VLC_CODEC_JPEG,
       .detect = IsJfif,
     },
@@ -568,6 +572,11 @@ static int Open(vlc_object_t *object)
     msg_Dbg(demux, "Detected image: %s",
             vlc_fourcc_GetDescription(VIDEO_ES, img->codec));
 
+    if( img->codec == VLC_CODEC_MXPEG )
+    {
+        return VLC_EGENERIC; //let avformat demux this file
+    }
+
     /* Load and if selected decode */
     es_format_t fmt;
     es_format_Init(&fmt, VIDEO_ES, img->codec);
index afdc484d39f26277726ed2cce81ffb57acc5ff84..07d9e1b46440b5c9f1f62af80d703b3da5e3eead 100644 (file)
@@ -35,6 +35,7 @@
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_demux.h>
+#include "mxpeg_helper.h"
 
 /*****************************************************************************
  * Module descriptor
@@ -316,6 +317,12 @@ static int Open( vlc_object_t * p_this )
     p_sys->psz_separator = NULL;
     p_sys->i_frame_size_estimate = 15 * 1024;
 
+    if( IsMxpeg( p_demux->s ) && !p_demux->b_force )
+    {
+        // let avformat handle this case
+        goto error;
+    }
+
     b_matched = CheckMimeHeader( p_demux, &i_size);
     if( b_matched )
     {
diff --git a/modules/demux/mxpeg_helper.h b/modules/demux/mxpeg_helper.h
new file mode 100644 (file)
index 0000000..76305c6
--- /dev/null
@@ -0,0 +1,89 @@
+/*****************************************************************************
+ * mxpeg_helper.h: MXPEG helper functions
+ *****************************************************************************
+ * Copyright (C) 2012 the VideoLAN team
+ * $Id$
+ *
+ * Authors: Sébastien Escudier
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+/**
+ * Finds FF XX in the first size byte of data
+ */
+static uint8_t find_jpeg_marker(int *position, const uint8_t *data, int size)
+{
+    for (int i = *position; i + 1 < size; i++) {
+        if (data[i] != 0xff)
+            continue;
+        if (data[i + 1] != 0xff) {
+            *position = i + 2;
+            return data[i + 1];
+        }
+    }
+    return 0xff;
+}
+
+/*
+ * Mxpeg frame format : http://developer.mobotix.com/docs/mxpeg_frame.html
+ * */
+static bool IsMxpeg(stream_t *s)
+{
+    const uint8_t *header;
+    int size = stream_Peek(s, &header, 256);
+    int position = 0;
+
+    if (find_jpeg_marker(&position, header, size) != 0xd8)
+        return false;
+    if (find_jpeg_marker(&position, header, position + 2) != 0xe0)
+        return false;
+
+    if (position + 2 > size)
+        return false;
+
+    /* Skip this jpeg header */
+    uint32_t header_size = GetWBE(&header[position]);
+    position += header_size;
+    if (position + 4 > size)
+    {
+        size = position + 4;
+        if( stream_Peek (s, &header, size) < size )
+            return false;
+    }
+
+    /* Skip the comment header */
+    if ( !(header[position] == 0xFF && header[position+1] == 0xFE) )
+        return false;
+
+    position += 2;
+    header_size = GetWBE (&header[position]);
+
+    /* Find the MXF header */
+    size = position + header_size + 8; //8 = FF FE 00 00 M X F 00
+    if (stream_Peek(s, &header, position + header_size + 8 ) < size)
+        return false;
+
+    position += header_size;
+    if ( !(header[position] == 0xFF && header[position+1] == 0xFE) )
+        return false;
+
+    position += 4;
+
+    if (memcmp (&header[position], "MXF\0", 4) )
+        return false;
+
+    return true;
+}