From 088f38a4f9f54bb923405c67c9e72d96d90aa284 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 20 Apr 2013 21:51:11 +0200 Subject: avcodec: Drop unnecessary ff_ name prefixes from static functions --- libavcodec/h264_parser.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/h264_parser.c') 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 -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 } } -- cgit v1.2.3