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
4bcca361
Commit
4bcca361
authored
11 years ago
by
Diego Biurrun
Browse files
Options
Downloads
Patches
Plain Diff
mpeg4video_parser: Drop pointless av_-prefix from static function
parent
984e3398
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/mpeg4video_parser.c
+3
-4
3 additions, 4 deletions
libavcodec/mpeg4video_parser.c
with
3 additions
and
4 deletions
libavcodec/mpeg4video_parser.c
+
3
−
4
View file @
4bcca361
...
...
@@ -71,9 +71,8 @@ int ff_mpeg4_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size)
}
/* XXX: make it use less memory */
static
int
av_mpeg4_decode_header
(
AVCodecParserContext
*
s1
,
AVCodecContext
*
avctx
,
const
uint8_t
*
buf
,
int
buf_size
)
static
int
mpeg4_decode_header
(
AVCodecParserContext
*
s1
,
AVCodecContext
*
avctx
,
const
uint8_t
*
buf
,
int
buf_size
)
{
struct
Mp4vParseContext
*
pc
=
s1
->
priv_data
;
Mpeg4DecContext
*
dec_ctx
=
&
pc
->
dec_ctx
;
...
...
@@ -130,7 +129,7 @@ static int mpeg4video_parse(AVCodecParserContext *s,
return
buf_size
;
}
}
av_
mpeg4_decode_header
(
s
,
avctx
,
buf
,
buf_size
);
mpeg4_decode_header
(
s
,
avctx
,
buf
,
buf_size
);
*
poutbuf
=
buf
;
*
poutbuf_size
=
buf_size
;
...
...
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