summaryrefslogtreecommitdiff
path: root/libavcodec/h261dec.c
diff options
context:
space:
mode:
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 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);
}