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
e9d0ab57
Commit
e9d0ab57
authored
Aug 13, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: fix x264 build detection
Fixes Ticket1503 Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
ed8d827a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
h264_sei.c
libavcodec/h264_sei.c
+2
-0
No files found.
libavcodec/h264_sei.c
View file @
e9d0ab57
...
...
@@ -111,6 +111,8 @@ static int decode_unregistered_user_data(H264Context *h, int size){
e
=
sscanf
(
user_data
+
16
,
"x264 - core %d"
/*%s - H.264/MPEG-4 AVC codec - Copyleft 2005 - http://www.videolan.org/x264.html*/
,
&
build
);
if
(
e
==
1
&&
build
>
0
)
h
->
x264_build
=
build
;
if
(
e
==
1
&&
build
==
1
&&
!
strncmp
(
user_data
+
16
,
"x264 - core 0000"
,
16
))
h
->
x264_build
=
67
;
if
(
s
->
avctx
->
debug
&
FF_DEBUG_BUGS
)
av_log
(
s
->
avctx
,
AV_LOG_DEBUG
,
"user data:
\"
%s
\"\n
"
,
user_data
+
16
);
...
...
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