summaryrefslogtreecommitdiff
path: root/libavcodec/h264_parser.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-04-20 21:51:11 +0200
committerDiego Biurrun <diego@biurrun.de>2013-04-30 16:02:02 +0200
commit088f38a4f9f54bb923405c67c9e72d96d90aa284 (patch)
tree6ed1103be05c3bbb5a21705b87faad8b76f6a358 /libavcodec/h264_parser.c
parent38282149b6ce8f4b8361e3b84542ba9aa8a1f32f (diff)
avcodec: Drop unnecessary ff_ name prefixes from static functions
Diffstat (limited to 'libavcodec/h264_parser.c')
-rw-r--r--libavcodec/h264_parser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c
index 3c98c84788..aa930d9e82 100644
--- a/libavcodec/h264_parser.c
+++ b/libavcodec/h264_parser.c
@@ -33,7 +33,7 @@
#include <assert.h>
-static int ff_h264_find_frame_end(H264Context *h, const uint8_t *buf, int buf_size)
+static int h264_find_frame_end(H264Context *h, const uint8_t *buf, int buf_size)
{
int i;
uint32_t state;
@@ -265,7 +265,7 @@ static int h264_parse(AVCodecParserContext *s,
if(s->flags & PARSER_FLAG_COMPLETE_FRAMES){
next= buf_size;
}else{
- next= ff_h264_find_frame_end(h, buf, buf_size);
+ next = h264_find_frame_end(h, buf, buf_size);
if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
*poutbuf = NULL;
@@ -275,7 +275,7 @@ static int h264_parse(AVCodecParserContext *s,
if(next<0 && next != END_NOT_FOUND){
assert(pc->last_index + next >= 0 );
- ff_h264_find_frame_end(h, &pc->buffer[pc->last_index + next], -next); //update state
+ h264_find_frame_end(h, &pc->buffer[pc->last_index + next], -next); // update state
}
}