# HG changeset patch # User michael # Date 1141421586 0 # Node ID 25f6245381be978c1460710400be11fb85da72d8 # Parent e1157712c1d576f74d26e01914532167bcd1d390 PAL8 support (fixed BLUR8.AVI) cleanup diff -r e1157712c1d5 -r 25f6245381be raw.c --- a/raw.c Fri Mar 03 20:36:08 2006 +0000 +++ b/raw.c Fri Mar 03 21:33:06 2006 +0000 @@ -26,7 +26,6 @@ typedef struct RawVideoContext { unsigned char * buffer; /* block of memory for holding one frame */ - unsigned char * p; /* current position in buffer */ int length; /* number of bytes in buffer */ AVFrame pic; ///< AVCodecContext.coded_frame } RawVideoContext; @@ -86,6 +85,7 @@ avctx->pix_fmt = findPixelFormat(avctx->codec_tag); else if (avctx->bits_per_sample){ switch(avctx->bits_per_sample){ + case 8: avctx->pix_fmt= PIX_FMT_PAL8 ; break; case 15: avctx->pix_fmt= PIX_FMT_RGB555; break; case 16: avctx->pix_fmt= PIX_FMT_RGB565; break; case 24: avctx->pix_fmt= PIX_FMT_BGR24 ; break; @@ -95,7 +95,6 @@ context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height); context->buffer = av_malloc(context->length); - context->p = context->buffer; context->pic.pict_type = FF_I_TYPE; context->pic.key_frame = 1; @@ -108,7 +107,7 @@ } static void flip(AVCodecContext *avctx, AVPicture * picture){ - if(!avctx->codec_tag && avctx->bits_per_sample && picture->linesize[1]==0){ + if(!avctx->codec_tag && avctx->bits_per_sample && picture->linesize[2]==0){ picture->data[0] += picture->linesize[0] * (avctx->height-1); picture->linesize[0] *= -1; } @@ -119,7 +118,6 @@ uint8_t *buf, int buf_size) { RawVideoContext *context = avctx->priv_data; - int bytesNeeded; AVFrame * frame = (AVFrame *) data; AVPicture * picture = (AVPicture *) data; @@ -127,27 +125,21 @@ frame->interlaced_frame = avctx->coded_frame->interlaced_frame; frame->top_field_first = avctx->coded_frame->top_field_first; - /* Early out without copy if packet size == frame size */ - if (buf_size == context->length && context->p == context->buffer) { - avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height); - flip(avctx, picture); - *data_size = sizeof(AVPicture); - return buf_size; + if(buf_size < context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0)) + return -1; + + avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height); + if(avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length){ + frame->data[1]= context->buffer; + } + if (avctx->palctrl && avctx->palctrl->palette_changed) { + memcpy(frame->data[1], avctx->palctrl->palette, AVPALETTE_SIZE); + avctx->palctrl->palette_changed = 0; } - bytesNeeded = context->length - (context->p - context->buffer); - if (buf_size < bytesNeeded) { - memcpy(context->p, buf, buf_size); - context->p += buf_size; - return buf_size; - } - - memcpy(context->p, buf, bytesNeeded); - context->p = context->buffer; - avpicture_fill(picture, context->buffer, avctx->pix_fmt, avctx->width, avctx->height); flip(avctx, picture); *data_size = sizeof(AVPicture); - return bytesNeeded; + return buf_size; } static int raw_close_decoder(AVCodecContext *avctx)