From 704a2881bc7787592889a5c3d48ef4ce8398214d Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Sun, 25 Feb 2007 15:33:38 +0000 Subject: Use pointers to avoid copying AVFrame. This ensure get_buffer() won't be confused with an AVFrame pointer which looks like it wasn't released. Originally committed as revision 8124 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp56.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/vp56.h') diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index 50e2015504..fb8bbba6fc 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -73,6 +73,7 @@ struct vp56_context { DSPContext dsp; ScanTable scantable; AVFrame frames[3]; + AVFrame *framep[4]; uint8_t *edge_emu_buffer_alloc; uint8_t *edge_emu_buffer; vp56_range_coder_t c; -- cgit v1.2.3