comparison flicvideo.c @ 4235:92bf2ce5794a libavcodec

typo
author lu_zero
date Fri, 24 Nov 2006 12:36:06 +0000
parents e560d163e7a8
children 05e932ddaaa9
comparison
equal deleted inserted replaced
4234:e560d163e7a8 4235:92bf2ce5794a
538 av_log(avctx, AV_LOG_ERROR, "Unexpected FLI_LC chunk in non-paletised FLC\n"); 538 av_log(avctx, AV_LOG_ERROR, "Unexpected FLI_LC chunk in non-paletised FLC\n");
539 stream_ptr = stream_ptr + chunk_size - 6; 539 stream_ptr = stream_ptr + chunk_size - 6;
540 break; 540 break;
541 541
542 case FLI_BLACK: 542 case FLI_BLACK:
543 /* set the whole frame to 0x0000 which is balck in both 15Bpp and 16Bpp modes. */ 543 /* set the whole frame to 0x0000 which is black in both 15Bpp and 16Bpp modes. */
544 memset(pixels, 0x0000, 544 memset(pixels, 0x0000,
545 s->frame.linesize[0] * s->avctx->height); 545 s->frame.linesize[0] * s->avctx->height);
546 break; 546 break;
547 547
548 case FLI_BRUN: 548 case FLI_BRUN: