# HG changeset patch # User stefang # Date 1163363027 0 # Node ID f623a9939995b2c84d2c9fd98d467c866182e998 # Parent 127d84a4c8e0d2fab754e3edcb8826ca1d460dd5 rename ff_cavs_flush to cavs_flush and make it static diff -r 127d84a4c8e0 -r f623a9939995 cavs.c --- 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 */