Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
85297319
Commit
85297319
authored
14 years ago
by
Diego Elio Pettenò
Committed by
Janne Grunau
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Make ff_h264_decode_rbsp_trailing static to h264.c
Signed-off-by:
Janne Grunau
<
janne-ffmpeg@jannau.net
>
parent
101e1f6f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavcodec/h264.c
+5
-1
5 additions, 1 deletion
libavcodec/h264.c
libavcodec/h264.h
+0
-6
0 additions, 6 deletions
libavcodec/h264.h
with
5 additions
and
7 deletions
libavcodec/h264.c
+
5
−
1
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
;
...
...
This diff is collapsed.
Click to expand it.
libavcodec/h264.h
+
0
−
6
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.
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment