changeset 4178:f623a9939995 libavcodec

rename ff_cavs_flush to cavs_flush and make it static
author stefang
date Sun, 12 Nov 2006 20:23:47 +0000
parents 127d84a4c8e0
children 46d38e3d7038
files cavs.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/cavs.c	Sun Nov 12 20:18:07 2006 +0000
+++ b/cavs.c	Sun Nov 12 20:23:47 2006 +0000
@@ -1319,7 +1319,7 @@
     return 0;
 }
 
-void ff_cavs_flush(AVCodecContext * avctx) {
+static void cavs_flush(AVCodecContext * avctx) {
     AVSContext *h = avctx->priv_data;
     h->got_keyframe = 0;
 }
@@ -1456,7 +1456,7 @@
     cavs_decode_end,
     cavs_decode_frame,
     CODEC_CAP_DR1 | CODEC_CAP_DELAY,
-    .flush= ff_cavs_flush,
+    .flush= cavs_flush,
 };
 #endif /* CONFIG_CAVS_DECODER */