msrle.c 4.4 KB
Newer Older
1 2 3 4
/*
 * Micrsoft RLE Video Decoder
 * Copyright (C) 2003 the ffmpeg project
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
13 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with FFmpeg; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 21 22
 */

/**
23
 * @file
24 25 26 27 28 29 30
 * MS RLE Video Decoder by Mike Melanson (melanson@pcisys.net)
 * For more information about the MS RLE format, visit:
 *   http://www.pcisys.net/~melanson/codecs/
 *
 * The MS RLE decoder outputs PAL8 colorspace data.
 *
 * Note that this decoder expects the palette colors from the end of the
Roberto Togni's avatar
Roberto Togni committed
31
 * BITMAPINFO header passed through palctrl.
32 33 34 35 36 37 38 39
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "avcodec.h"
#include "dsputil.h"
40
#include "msrledec.h"
41 42 43 44 45

typedef struct MsrleContext {
    AVCodecContext *avctx;
    AVFrame frame;

Michael Niedermayer's avatar
Michael Niedermayer committed
46
    const unsigned char *buf;
47 48 49 50
    int size;

} MsrleContext;

51
static av_cold int msrle_decode_init(AVCodecContext *avctx)
52
{
53
    MsrleContext *s = avctx->priv_data;
54 55 56

    s->avctx = avctx;

57 58 59 60 61 62 63 64 65 66 67 68 69
    switch (avctx->bits_per_coded_sample) {
    case 4:
    case 8:
        avctx->pix_fmt = PIX_FMT_PAL8;
        break;
    case 24:
        avctx->pix_fmt = PIX_FMT_BGR24;
        break;
    default:
        av_log(avctx, AV_LOG_ERROR, "unsupported bits per sample\n");
        return -1;
    }

70
    s->frame.data[0] = NULL;
71 72 73 74 75 76

    return 0;
}

static int msrle_decode_frame(AVCodecContext *avctx,
                              void *data, int *data_size,
77
                              AVPacket *avpkt)
78
{
79 80
    const uint8_t *buf = avpkt->data;
    int buf_size = avpkt->size;
81
    MsrleContext *s = avctx->priv_data;
82
    int istride = FFALIGN(avctx->width*avctx->bits_per_coded_sample, 32) / 8;
83 84 85 86

    s->buf = buf;
    s->size = buf_size;

87
    s->frame.reference = 1;
88 89 90
    s->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
    if (avctx->reget_buffer(avctx, &s->frame)) {
        av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
91 92 93
        return -1;
    }

94
    if (s->avctx->palctrl) {
Baptiste Coudurier's avatar
Baptiste Coudurier committed
95 96 97 98 99 100
        /* make the palette available */
        memcpy(s->frame.data[1], s->avctx->palctrl->palette, AVPALETTE_SIZE);
        if (s->avctx->palctrl->palette_changed) {
            s->frame.palette_has_changed = 1;
            s->avctx->palctrl->palette_changed = 0;
        }
101
    }
102

103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
    /* FIXME how to correctly detect RLE ??? */
    if (avctx->height * istride == avpkt->size) { /* assume uncompressed */
        int linesize = avctx->width * avctx->bits_per_coded_sample / 8;
        uint8_t *ptr = s->frame.data[0];
        uint8_t *buf = avpkt->data + (avctx->height-1)*istride;
        int i, j;

        for (i = 0; i < avctx->height; i++) {
            if (avctx->bits_per_coded_sample == 4) {
                for (j = 0; j < avctx->width - 1; j += 2) {
                    ptr[j+0] = buf[j>>1] >> 4;
                    ptr[j+1] = buf[j>>1] & 0xF;
                }
                if (avctx->width & 1)
                    ptr[j+0] = buf[j>>1] >> 4;
            } else {
                memcpy(ptr, buf, linesize);
            }
            buf -= istride;
            ptr += s->frame.linesize[0];
        }
    } else {
        ff_msrle_decode(avctx, (AVPicture*)&s->frame, avctx->bits_per_coded_sample, buf, buf_size);
    }
127

128 129 130 131 132 133 134
    *data_size = sizeof(AVFrame);
    *(AVFrame*)data = s->frame;

    /* report that the buffer was completely consumed */
    return buf_size;
}

135
static av_cold int msrle_decode_end(AVCodecContext *avctx)
136
{
137
    MsrleContext *s = avctx->priv_data;
138 139

    /* release the last frame */
140 141
    if (s->frame.data[0])
        avctx->release_buffer(avctx, &s->frame);
142 143 144 145 146 147

    return 0;
}

AVCodec msrle_decoder = {
    "msrle",
148
    AVMEDIA_TYPE_VIDEO,
149 150 151 152 153 154
    CODEC_ID_MSRLE,
    sizeof(MsrleContext),
    msrle_decode_init,
    NULL,
    msrle_decode_end,
    msrle_decode_frame,
155
    CODEC_CAP_DR1,
156
    .long_name= NULL_IF_CONFIG_SMALL("Microsoft RLE"),
157
};