From cab15f9db4ba6e390b25dd80d7305bb51b5583c4 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 25 Apr 2012 18:04:45 +0200 Subject: [PATCH] ffv1: remove clear_state(), it has become unused Signed-off-by: Michael Niedermayer --- libavcodec/ffv1.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 4df005f06c..6d036685b9 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -1155,15 +1155,6 @@ static void clear_slice_state(FFV1Context *f, FFV1Context *fs){ } } -static void clear_state(FFV1Context *f){ - int si; - - for(si=0; sislice_count; si++){ - FFV1Context *fs= f->slice_context[si]; - clear_slice_state(f, fs); - } -} - #if CONFIG_FFV1_ENCODER static void encode_slice_header(FFV1Context *f, FFV1Context *fs){