Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
2123e7c2
Commit
2123e7c2
authored
May 21, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for MPEG2 FOURCCs in mp4 demuxer
Fix #1590 - patch by jj
parent
7c72aa3a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
modules/demux/mp4/mp4.c
modules/demux/mp4/mp4.c
+15
-0
No files found.
modules/demux/mp4/mp4.c
View file @
2123e7c2
...
...
@@ -1609,6 +1609,21 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
switch
(
p_sample
->
i_type
)
{
/* qt decoder, send the complete chunk */
case
VLC_FOURCC
(
'h'
,
'd'
,
'v'
,
'1'
):
// HDV 720p30
case
VLC_FOURCC
(
'h'
,
'd'
,
'v'
,
'2'
):
// HDV 1080i60
case
VLC_FOURCC
(
'h'
,
'd'
,
'v'
,
'3'
):
// HDV 1080i50
case
VLC_FOURCC
(
'h'
,
'd'
,
'v'
,
'5'
):
// HDV 720p25
case
VLC_FOURCC
(
'm'
,
'x'
,
'5'
,
'n'
):
// MPEG2 IMX NTSC 525/60 50mb/s produced by FCP
case
VLC_FOURCC
(
'm'
,
'x'
,
'5'
,
'p'
):
// MPEG2 IMX PAL 625/60 50mb/s produced by FCP
case
VLC_FOURCC
(
'm'
,
'x'
,
'4'
,
'n'
):
// MPEG2 IMX NTSC 525/60 40mb/s produced by FCP
case
VLC_FOURCC
(
'm'
,
'x'
,
'4'
,
'p'
):
// MPEG2 IMX PAL 625/60 40mb/s produced by FCP
case
VLC_FOURCC
(
'm'
,
'x'
,
'3'
,
'n'
):
// MPEG2 IMX NTSC 525/60 30mb/s produced by FCP
case
VLC_FOURCC
(
'm'
,
'x'
,
'3'
,
'p'
):
// MPEG2 IMX PAL 625/50 30mb/s produced by FCP
case
VLC_FOURCC
(
'x'
,
'd'
,
'v'
,
'2'
):
// XDCAM HD 1080i60
case
VLC_FOURCC
(
'A'
,
'V'
,
'm'
,
'p'
):
// AVID IMX PAL
p_track
->
fmt
.
i_codec
=
VLC_FOURCC
(
'm'
,
'p'
,
'g'
,
'v'
);
break
;
/* qt decoder, send the complete chunk */
case
VLC_FOURCC
(
'S'
,
'V'
,
'Q'
,
'3'
):
case
VLC_FOURCC
(
'S'
,
'V'
,
'Q'
,
'1'
):
case
VLC_FOURCC
(
'V'
,
'P'
,
'3'
,
'1'
):
...
...
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