comparison flashsv.c @ 4372:9abacee8d312 libavcodec

Really fix my never ending mistakes.
author banan
date Sun, 21 Jan 2007 18:46:19 +0000
parents 0e381e54eeb0
children a4ccf06dfae2
comparison
equal deleted inserted replaced
4371:0e381e54eeb0 4372:9abacee8d312
47 * block sizes should give a better result then to just use a fixed size. 47 * block sizes should give a better result then to just use a fixed size.
48 */ 48 */
49 49
50 #include <stdio.h> 50 #include <stdio.h>
51 #include <stdlib.h> 51 #include <stdlib.h>
52 #ifdef CONFIG_ZLIB
53 #include <zlib.h>
54 52
55 #include "common.h" 53 #include "common.h"
56 #include "avcodec.h" 54 #include "avcodec.h"
57 #include "bitstream.h" 55 #include "bitstream.h"
56
57 #ifdef CONFIG_ZLIB
58 #include <zlib.h>
58 59
59 typedef struct FlashSVContext { 60 typedef struct FlashSVContext {
60 AVCodecContext *avctx; 61 AVCodecContext *avctx;
61 AVFrame frame; 62 AVFrame frame;
62 int image_width, image_height; 63 int image_width, image_height;