comparison snow.c @ 4588:fc155ff94878 libavcodec

cosmetics: Fix another common typo, dependAnt --> dependEnt.
author diego
date Sat, 24 Feb 2007 09:41:43 +0000
parents ce643a22f049
children a96d905dcbaa
comparison
equal deleted inserted replaced
4587:644687c58928 4588:fc155ff94878
420 int height; 420 int height;
421 SubBand band[MAX_DECOMPOSITIONS][4]; 421 SubBand band[MAX_DECOMPOSITIONS][4];
422 }Plane; 422 }Plane;
423 423
424 typedef struct SnowContext{ 424 typedef struct SnowContext{
425 // 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) 425 // 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)
426 426
427 AVCodecContext *avctx; 427 AVCodecContext *avctx;
428 RangeCoder c; 428 RangeCoder c;
429 DSPContext dsp; 429 DSPContext dsp;
430 AVFrame new_picture; 430 AVFrame new_picture;
471 #define ME_CACHE_SIZE 1024 471 #define ME_CACHE_SIZE 1024
472 int me_cache[ME_CACHE_SIZE]; 472 int me_cache[ME_CACHE_SIZE];
473 int me_cache_generation; 473 int me_cache_generation;
474 slice_buffer sb; 474 slice_buffer sb;
475 475
476 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) 476 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)
477 }SnowContext; 477 }SnowContext;
478 478
479 typedef struct { 479 typedef struct {
480 DWTELEM *b0; 480 DWTELEM *b0;
481 DWTELEM *b1; 481 DWTELEM *b1;