Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
63f07084
Commit
63f07084
authored
Oct 24, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: Support invalid output by mplayers TS demuxer.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
9c020810
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
h264.c
libavcodec/h264.c
+3
-2
No files found.
libavcodec/h264.c
View file @
63f07084
...
...
@@ -3941,9 +3941,10 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size){
break
;
case
NAL_SPS
:
init_get_bits
(
&
s
->
gb
,
ptr
,
bit_length
);
if
(
ff_h264_decode_seq_parameter_set
(
h
)
<
0
&&
h
->
is_avc
&&
(
nalsize
!=
consumed
)
&&
nalsize
){
if
(
ff_h264_decode_seq_parameter_set
(
h
)
<
0
&&
(
h
->
is_avc
?
(
nalsize
!=
consumed
)
&&
nalsize
:
1
)
){
av_log
(
h
->
s
.
avctx
,
AV_LOG_DEBUG
,
"SPS decoding failure, trying alternative mode
\n
"
);
init_get_bits
(
&
s
->
gb
,
&
buf
[
buf_index
+
1
-
consumed
],
8
*
nalsize
);
if
(
h
->
is_avc
)
av_assert0
(
next_avc
-
buf_index
+
consumed
==
nalsize
);
init_get_bits
(
&
s
->
gb
,
&
buf
[
buf_index
+
1
-
consumed
],
8
*
(
next_avc
-
buf_index
+
consumed
));
ff_h264_decode_seq_parameter_set
(
h
);
}
...
...
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