diff options
author | Stefan Gehrer | 2006-11-12 20:23:47 +0000 |
---|---|---|
committer | Stefan Gehrer | 2006-11-12 20:23:47 +0000 |
commit | e275b7efd94d75f697af6b2a90b799cd06dad441 (patch) | |
tree | 19c90da342e842094f8e76fe21d0e7a93dbc9391 /libavcodec/cavs.c | |
parent | 53aa68b3290533eeaae7812ad1c30de5f783e9f6 (diff) |
rename ff_cavs_flush to cavs_flush and make it static
Originally committed as revision 6994 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavs.c')
-rw-r--r-- | libavcodec/cavs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/cavs.c b/libavcodec/cavs.c index 2bedc08324..ee862bbc7b 100644 --- a/libavcodec/cavs.c +++ b/libavcodec/cavs.c @@ -1319,7 +1319,7 @@ static int decode_seq_header(AVSContext *h) { 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 @@ AVCodec cavs_decoder = { cavs_decode_end, cavs_decode_frame, CODEC_CAP_DR1 | CODEC_CAP_DELAY, - .flush= ff_cavs_flush, + .flush= cavs_flush, }; #endif /* CONFIG_CAVS_DECODER */ |