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
0b1b7516
Commit
0b1b7516
authored
Mar 18, 2012
by
F. Yhuel
Committed by
Jean-Baptiste Kempf
Mar 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libmp4: fix 'mfhd' parsing
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
b3e61d25
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
modules/demux/mp4/libmp4.c
modules/demux/mp4/libmp4.c
+2
-0
modules/demux/mp4/libmp4.h
modules/demux/mp4/libmp4.h
+3
-2
No files found.
modules/demux/mp4/libmp4.c
View file @
0b1b7516
...
...
@@ -490,6 +490,8 @@ static int MP4_ReadBox_mfhd( stream_t *p_stream, MP4_Box_t *p_box )
{
MP4_READBOX_ENTER
(
MP4_Box_data_mfhd_t
);
MP4_GETVERSIONFLAGS
(
p_box
->
data
.
p_mvhd
);
MP4_GET4BYTES
(
p_box
->
data
.
p_mfhd
->
i_sequence_number
);
#ifdef MP4_VERBOSE
...
...
modules/demux/mp4/libmp4.h
View file @
0b1b7516
...
...
@@ -832,9 +832,10 @@ typedef struct
typedef
struct
MP4_Box_data_mfhd_s
{
uint32_t
i_sequence_number
;
uint8_t
i_version
;
uint32_t
i_flags
;
uint
8_t
*
p_vendor_extension
;
uint
32_t
i_sequence_number
;
}
MP4_Box_data_mfhd_t
;
...
...
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