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
7e1beb39
Commit
7e1beb39
authored
Apr 01, 2007
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* backport [19060]
Fixed wrong type used in mp4 parsing
parent
ee5ad3cc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
modules/demux/mp4/libmp4.c
modules/demux/mp4/libmp4.c
+2
-4
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+0
-2
No files found.
modules/demux/mp4/libmp4.c
View file @
7e1beb39
...
...
@@ -1692,7 +1692,7 @@ static int MP4_ReadBox_elst( stream_t *p_stream, MP4_Box_t *p_box )
{
unsigned
int
i
;
MP4_READBOX_ENTER
(
MP4_Box_data_
padb
_t
);
MP4_READBOX_ENTER
(
MP4_Box_data_
elst
_t
);
MP4_GETVERSIONFLAGS
(
p_box
->
data
.
p_elst
);
...
...
@@ -1732,9 +1732,7 @@ static int MP4_ReadBox_elst( stream_t *p_stream, MP4_Box_t *p_box )
}
#ifdef MP4_VERBOSE
msg_Dbg
(
p_stream
,
"read box:
\"
elst
\"
entry-count "
I64Fd
,
i_read
/
2
);
msg_Dbg
(
p_stream
,
"read box:
\"
elst
\"
entry-count "
I64Fd
,
p_box
->
data
.
p_elst
->
i_entry_count
);
#endif
MP4_READBOX_EXIT
(
1
);
}
...
...
modules/stream_out/rtp.c
View file @
7e1beb39
...
...
@@ -2524,8 +2524,6 @@ static int rtp_packetize_h264_nal( sout_stream_t *p_stream, sout_stream_id_t *id
out
->
i_dts
=
i_dts
+
i
*
i_length
/
i_count
;
out
->
i_length
=
i_length
/
i_count
;
fprintf
(
stderr
,
"FU-A: payload=%d hdr=0x%x
\n
"
,
i_payload
,
i_nal_hdr
);
/* */
rtp_packetize_common
(
id
,
out
,
(
b_last
&&
i_payload
==
i_data
),
i_pts
);
out
->
i_buffer
=
14
+
i_payload
;
...
...
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