summaryrefslogtreecommitdiff
path: root/libavcodec/vc1.c
diff options
context:
space:
mode:
authorZdenek Kabelac <zdenek.kabelac@gmail.com>2008-01-25 07:37:46 +0000
committerAndreas Ă–man <andreas@lonelycoder.com>2008-01-25 07:37:46 +0000
commite2fdba650d3ae21c693eac21642e389c8da25a1d (patch)
tree2a912f056980bb47a8a5d19a663aa5b84360fff7 /libavcodec/vc1.c
parent0f44edaa1ce77f95b83de0db1077dafc4a305331 (diff)
Correctly clean up IntraX8Context upon codec close.
patch by Zdenek Kabelac, zdenek d kabelac a gmail d com Originally committed as revision 11608 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r--libavcodec/vc1.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index 86ca7b978b..01cff4c057 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -4119,6 +4119,7 @@ static int vc1_decode_end(AVCodecContext *avctx)
av_freep(&v->acpred_plane);
av_freep(&v->over_flags_plane);
av_freep(&v->mb_type_base);
+ ff_intrax8_common_end(&v->x8);
return 0;
}