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
b691fd7a
Commit
b691fd7a
authored
Mar 29, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: drop ff_h264_ prefix from static function ff_h264_decode_rbsp_trailing()
parent
9ad80ef3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
h264.c
libavcodec/h264.c
+2
-2
No files found.
libavcodec/h264.c
View file @
b691fd7a
...
...
@@ -262,7 +262,7 @@ nsc:
* Identify the exact end of the bitstream
* @return the length of the trailing, or 0 if damaged
*/
static
int
ff_h264_
decode_rbsp_trailing
(
H264Context
*
h
,
const
uint8_t
*
src
)
static
int
decode_rbsp_trailing
(
H264Context
*
h
,
const
uint8_t
*
src
)
{
int
v
=
*
src
;
int
r
;
...
...
@@ -4225,7 +4225,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size)
dst_length
--
;
bit_length
=
!
dst_length
?
0
:
(
8
*
dst_length
-
ff_h264_
decode_rbsp_trailing
(
h
,
ptr
+
dst_length
-
1
));
decode_rbsp_trailing
(
h
,
ptr
+
dst_length
-
1
));
if
(
s
->
avctx
->
debug
&
FF_DEBUG_STARTCODE
)
av_log
(
h
->
s
.
avctx
,
AV_LOG_DEBUG
,
...
...
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