Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
4bcca361
Commit
4bcca361
authored
Feb 20, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpeg4video_parser: Drop pointless av_-prefix from static function
parent
984e3398
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
mpeg4video_parser.c
libavcodec/mpeg4video_parser.c
+3
-4
No files found.
libavcodec/mpeg4video_parser.c
View file @
4bcca361
...
@@ -71,9 +71,8 @@ int ff_mpeg4_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size)
...
@@ -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 */
/* XXX: make it use less memory */
static
int
av_mpeg4_decode_header
(
AVCodecParserContext
*
s1
,
static
int
mpeg4_decode_header
(
AVCodecParserContext
*
s1
,
AVCodecContext
*
avctx
,
AVCodecContext
*
avctx
,
const
uint8_t
*
buf
,
int
buf_size
)
const
uint8_t
*
buf
,
int
buf_size
)
{
{
struct
Mp4vParseContext
*
pc
=
s1
->
priv_data
;
struct
Mp4vParseContext
*
pc
=
s1
->
priv_data
;
Mpeg4DecContext
*
dec_ctx
=
&
pc
->
dec_ctx
;
Mpeg4DecContext
*
dec_ctx
=
&
pc
->
dec_ctx
;
...
@@ -130,7 +129,7 @@ static int mpeg4video_parse(AVCodecParserContext *s,
...
@@ -130,7 +129,7 @@ static int mpeg4video_parse(AVCodecParserContext *s,
return
buf_size
;
return
buf_size
;
}
}
}
}
av_
mpeg4_decode_header
(
s
,
avctx
,
buf
,
buf_size
);
mpeg4_decode_header
(
s
,
avctx
,
buf
,
buf_size
);
*
poutbuf
=
buf
;
*
poutbuf
=
buf
;
*
poutbuf_size
=
buf_size
;
*
poutbuf_size
=
buf_size
;
...
...
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