Browse Source

enable a flexible lifetime

Originally committed as revision 24940 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Tobias Bindhammer 15 years ago
parent
commit
6cd94998a4
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavcodec/a64multienc.c

+ 1
- 2
libavcodec/a64multienc.c View File

@@ -33,7 +33,6 @@
#define DITHERSTEPS 8
#define CHARSET_CHARS 256
#define INTERLACED 1
#define LIFETIME 4

/* gray gradient */
static const int mc_colors[5]={0x0,0xb,0xc,0xf,0x1};
@@ -241,7 +240,7 @@ static int a64multi_encode_frame(AVCodecContext *avctx, unsigned char *buf,
int a;

int req_size;
int num_frames = LIFETIME;
int num_frames = c->mc_lifetime;

int *charmap = c->mc_charmap;
uint8_t *colram = c->mc_colram;


Loading…
Cancel
Save