comparison mpegvideo.c @ 6342:644cc66607b2 libavcodec

Remove pointless code.
author michael
date Sat, 09 Feb 2008 17:26:40 +0000
parents 52ccab2531bd
children 931ca319f2fe
comparison
equal deleted inserted replaced
6341:56592543346c 6342:644cc66607b2
53 DCTELEM *block, int n, int qscale); 53 DCTELEM *block, int n, int qscale);
54 static void dct_unquantize_h263_inter_c(MpegEncContext *s, 54 static void dct_unquantize_h263_inter_c(MpegEncContext *s,
55 DCTELEM *block, int n, int qscale); 55 DCTELEM *block, int n, int qscale);
56 static void draw_edges_c(uint8_t *buf, int wrap, int width, int height, int w); 56 static void draw_edges_c(uint8_t *buf, int wrap, int width, int height, int w);
57 57
58 #ifdef HAVE_XVMC
59 extern int XVMC_field_start(MpegEncContext*s, AVCodecContext *avctx); 58 extern int XVMC_field_start(MpegEncContext*s, AVCodecContext *avctx);
60 extern void XVMC_field_end(MpegEncContext *s); 59 extern void XVMC_field_end(MpegEncContext *s);
61 extern void XVMC_decode_mb(MpegEncContext *s); 60 extern void XVMC_decode_mb(MpegEncContext *s);
62 #endif
63 61
64 void (*draw_edges)(uint8_t *buf, int wrap, int width, int height, int w)= draw_edges_c; 62 void (*draw_edges)(uint8_t *buf, int wrap, int width, int height, int w)= draw_edges_c;
65 63
66 64
67 /* enable all paranoid tests for rounding, overflows, etc... */ 65 /* enable all paranoid tests for rounding, overflows, etc... */