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
85297319
Commit
85297319
authored
Jan 25, 2011
by
Diego Elio Pettenò
Committed by
Janne Grunau
Jan 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make ff_h264_decode_rbsp_trailing static to h264.c
Signed-off-by:
Janne Grunau
<
janne-ffmpeg@jannau.net
>
parent
101e1f6f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
7 deletions
+5
-7
h264.c
libavcodec/h264.c
+5
-1
h264.h
libavcodec/h264.h
+0
-6
No files found.
libavcodec/h264.c
View file @
85297319
...
...
@@ -233,7 +233,11 @@ nsc:
return
dst
;
}
int
ff_h264_decode_rbsp_trailing
(
H264Context
*
h
,
const
uint8_t
*
src
){
/**
* 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
){
int
v
=
*
src
;
int
r
;
...
...
libavcodec/h264.h
View file @
85297319
...
...
@@ -625,12 +625,6 @@ int ff_h264_decode_picture_parameter_set(H264Context *h, int bit_length);
*/
const
uint8_t
*
ff_h264_decode_nal
(
H264Context
*
h
,
const
uint8_t
*
src
,
int
*
dst_length
,
int
*
consumed
,
int
length
);
/**
* Identify the exact end of the bitstream
* @return the length of the trailing, or 0 if damaged
*/
int
ff_h264_decode_rbsp_trailing
(
H264Context
*
h
,
const
uint8_t
*
src
);
/**
* Free any data that may have been allocated in the H264 context like SPS, PPS etc.
*/
...
...
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