Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
2985b7fe
Commit
2985b7fe
authored
Feb 10, 2012
by
Sébastien Escudier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
discard image and mjpeg demuxers in case of mxpeg
parent
1bf20469
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
107 additions
and
2 deletions
+107
-2
modules/demux/Modules.am
modules/demux/Modules.am
+2
-2
modules/demux/image.c
modules/demux/image.c
+9
-0
modules/demux/mjpeg.c
modules/demux/mjpeg.c
+7
-0
modules/demux/mxpeg_helper.h
modules/demux/mxpeg_helper.h
+89
-0
No files found.
modules/demux/Modules.am
View file @
2985b7fe
...
...
@@ -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 += \
...
...
modules/demux/image.c
View file @
2985b7fe
...
...
@@ -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
);
...
...
modules/demux/mjpeg.c
View file @
2985b7fe
...
...
@@ -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
)
{
...
...
modules/demux/mxpeg_helper.h
0 → 100644
View file @
2985b7fe
/*****************************************************************************
* 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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment