comparison svq1.c @ 4588:fc155ff94878 libavcodec

cosmetics: Fix another common typo, dependAnt --> dependEnt.
author diego
date Sat, 24 Feb 2007 09:41:43 +0000
parents 304255e80196
children a96d905dcbaa
comparison
equal deleted inserted replaced
4587:644687c58928 4588:fc155ff94878
63 #define SVQ1_BLOCK_INTER 1 63 #define SVQ1_BLOCK_INTER 1
64 #define SVQ1_BLOCK_INTER_4V 2 64 #define SVQ1_BLOCK_INTER_4V 2
65 #define SVQ1_BLOCK_INTRA 3 65 #define SVQ1_BLOCK_INTRA 3
66 66
67 typedef struct SVQ1Context { 67 typedef struct SVQ1Context {
68 MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to make the motion estimation eventually independant of MpegEncContext, so this will be removed then (FIXME/XXX) 68 MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to make the motion estimation eventually independent of MpegEncContext, so this will be removed then (FIXME/XXX)
69 AVCodecContext *avctx; 69 AVCodecContext *avctx;
70 DSPContext dsp; 70 DSPContext dsp;
71 AVFrame picture; 71 AVFrame picture;
72 AVFrame current_picture; 72 AVFrame current_picture;
73 AVFrame last_picture; 73 AVFrame last_picture;