diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-20 21:51:11 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-04-30 16:02:02 +0200 |
commit | 088f38a4f9f54bb923405c67c9e72d96d90aa284 (patch) | |
tree | 6ed1103be05c3bbb5a21705b87faad8b76f6a358 /libavcodec/h261dec.c | |
parent | 38282149b6ce8f4b8361e3b84542ba9aa8a1f32f (diff) | |
download | ffmpeg-088f38a4f9f54bb923405c67c9e72d96d90aa284.tar.gz |
avcodec: Drop unnecessary ff_ name prefixes from static functions
Diffstat (limited to 'libavcodec/h261dec.c')
-rw-r--r-- | libavcodec/h261dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c index 49756a7dc5..8872c6c2f6 100644 --- a/libavcodec/h261dec.c +++ b/libavcodec/h261dec.c @@ -147,7 +147,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; @@ -627,7 +627,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); } |