summaryrefslogtreecommitdiff
path: root/libavcodec/h261dec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-01 18:16:32 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-01 18:16:32 +0200
commit04fa81877913798bf4badfa472c8653219f2aeb1 (patch)
tree875c341ee83d0b4916b59a40fad7e4a58c9aeac4 /libavcodec/h261dec.c
parentcae8f469fee7c32685f04a2b507251119d6875ef (diff)
parent088f38a4f9f54bb923405c67c9e72d96d90aa284 (diff)
Merge commit '088f38a4f9f54bb923405c67c9e72d96d90aa284'
* commit '088f38a4f9f54bb923405c67c9e72d96d90aa284': avcodec: Drop unnecessary ff_ name prefixes from static functions Conflicts: libavcodec/ass.c libavcodec/h264_parser.c libavcodec/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h261dec.c')
-rw-r--r--libavcodec/h261dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c
index 8ed16bd4b1..b6303444d9 100644
--- a/libavcodec/h261dec.c
+++ b/libavcodec/h261dec.c
@@ -148,7 +148,7 @@ static int h261_decode_gob_header(H261Context *h)
* Decode the group of blocks / video packet header.
* @return <0 if no resync found
*/
-static int ff_h261_resync(H261Context *h)
+static int h261_resync(H261Context *h)
{
MpegEncContext *const s = &h->s;
int left, ret;
@@ -632,7 +632,7 @@ retry:
s->mb_y = 0;
while (h->gob_number < (s->mb_height == 18 ? 12 : 5)) {
- if (ff_h261_resync(h) < 0)
+ if (h261_resync(h) < 0)
break;
h261_decode_gob(h);
}