Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
ea7b923b
Commit
ea7b923b
authored
Jul 28, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a few missing object type id for mp4.
parent
3a2eb4e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
modules/demux/mp4/mp4.c
modules/demux/mp4/mp4.c
+16
-0
No files found.
modules/demux/mp4/mp4.c
View file @
ea7b923b
...
...
@@ -1562,6 +1562,15 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
case
(
0x6c
):
/* jpeg */
p_track
->
fmt
.
i_codec
=
VLC_FOURCC
(
'j'
,
'p'
,
'e'
,
'g'
);
break
;
case
(
0x6d
):
/* png */
p_track
->
fmt
.
i_codec
=
VLC_FOURCC
(
'p'
,
'n'
,
'g'
,
' '
);
break
;
case
(
0x6e
):
/* jpeg200 */
p_track
->
fmt
.
i_codec
=
VLC_FOURCC
(
'M'
,
'J'
,
'2'
,
'C'
);
break
;
case
(
0xa3
):
/* vc1 */
p_track
->
fmt
.
i_codec
=
VLC_FOURCC
(
'W'
,
'V'
,
'C'
,
'1'
);
break
;
/* Private ID */
case
(
0xe0
):
/* NeroDigital: dvd subs */
...
...
@@ -1574,6 +1583,13 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
p_track
->
fmt
.
subs
.
spu
.
i_original_frame_height
=
p_track
->
i_height
;
break
;
}
case
(
0xe1
):
/* QCelp for 3gp */
if
(
p_track
->
fmt
.
i_cat
==
AUDIO_ES
)
{
p_track
->
fmt
.
i_codec
=
VLC_FOURCC
(
'Q'
,
'c'
,
'l'
,
'p'
);
}
break
;
/* Fallback */
default:
/* Unknown entry, but don't touch i_fourcc */
...
...
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