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
304e916a
Commit
304e916a
authored
Feb 13, 2014
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264_sei: name buffering period type consistently
parent
15210354
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
h264.h
libavcodec/h264.h
+1
-1
h264_sei.c
libavcodec/h264_sei.c
+1
-1
No files found.
libavcodec/h264.h
View file @
304e916a
...
...
@@ -120,7 +120,7 @@ enum {
* SEI message types
*/
typedef
enum
{
SEI_
BUFFERING_PERIOD
=
0
,
///< buffering period (H.264, D.1.1)
SEI_
TYPE_BUFFERING_PERIOD
=
0
,
///< buffering period (H.264, D.1.1)
SEI_TYPE_PIC_TIMING
=
1
,
///< picture timing
SEI_TYPE_USER_DATA_UNREGISTERED
=
5
,
///< unregistered user data
SEI_TYPE_RECOVERY_POINT
=
6
,
///< recovery point (frame # to decoder sync)
...
...
libavcodec/h264_sei.c
View file @
304e916a
...
...
@@ -238,7 +238,7 @@ int ff_h264_decode_sei(H264Context *h)
if
(
ret
<
0
)
return
ret
;
break
;
case
SEI_BUFFERING_PERIOD
:
case
SEI_
TYPE_
BUFFERING_PERIOD
:
ret
=
decode_buffering_period
(
h
);
if
(
ret
<
0
)
return
ret
;
...
...
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