Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
904cfd25
Commit
904cfd25
authored
Sep 30, 2014
by
Benoit Fouet
Committed by
Michael Niedermayer
Oct 05, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/h264_mp4toannexb_bsf: reset the new IDR flag when SPS/PPS is seen.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
436206c1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
h264_mp4toannexb_bsf.c
libavcodec/h264_mp4toannexb_bsf.c
+2
-2
No files found.
libavcodec/h264_mp4toannexb_bsf.c
View file @
904cfd25
...
...
@@ -186,9 +186,9 @@ static int h264_mp4toannexb_filter(AVBitStreamFilterContext *bsfc,
goto
fail
;
if
(
unit_type
==
7
)
ctx
->
idr_sps_seen
=
1
;
ctx
->
idr_sps_seen
=
ctx
->
new_idr
=
1
;
else
if
(
unit_type
==
8
)
{
ctx
->
idr_pps_seen
=
1
;
ctx
->
idr_pps_seen
=
ctx
->
new_idr
=
1
;
/* if SPS has not been seen yet, prepend the AVCC one to PPS */
if
(
!
ctx
->
idr_sps_seen
)
{
if
(
ctx
->
sps_offset
==
-
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