msrle.c 4.49 KB
Newer Older
1
/*
2
 * Microsoft RLE video decoder
3 4
 * Copyright (C) 2003 the ffmpeg project
 *
5
 * This file is part of Libav.
6
 *
7
 * Libav 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
 * Libav 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 Libav; 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
 * MS RLE video decoder by Mike Melanson (melanson@pcisys.net)
25 26 27 28 29 30 31 32 33 34 35 36
 * For more information about the MS RLE format, visit:
 *   http://www.pcisys.net/~melanson/codecs/
 *
 * The MS RLE decoder outputs PAL8 colorspace data.
 */

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

#include "avcodec.h"
#include "dsputil.h"
37
#include "msrledec.h"
38 39 40 41 42

typedef struct MsrleContext {
    AVCodecContext *avctx;
    AVFrame frame;

Michael Niedermayer's avatar
Michael Niedermayer committed
43
    const unsigned char *buf;
44 45
    int size;

46
    uint32_t pal[256];
47 48
} MsrleContext;

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

    s->avctx = avctx;

55 56 57 58 59 60 61 62 63 64 65 66 67
    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;
    }

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

    return 0;
}

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

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

85
    s->frame.reference = 1;
86 87 88
    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");
89 90 91
        return -1;
    }

92 93 94 95
    if (avctx->bits_per_coded_sample <= 8) {
        const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, NULL);

        if (pal) {
Baptiste Coudurier's avatar
Baptiste Coudurier committed
96
            s->frame.palette_has_changed = 1;
97
            memcpy(s->pal, pal, AVPALETTE_SIZE);
Baptiste Coudurier's avatar
Baptiste Coudurier committed
98
        }
99 100 101

        /* make the palette available */
        memcpy(s->frame.data[1], s->pal, AVPALETTE_SIZE);
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 127
    /* 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);
    }
128

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

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

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

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

    return 0;
}

147
AVCodec ff_msrle_decoder = {
148 149 150 151 152 153 154 155
    .name           = "msrle",
    .type           = AVMEDIA_TYPE_VIDEO,
    .id             = CODEC_ID_MSRLE,
    .priv_data_size = sizeof(MsrleContext),
    .init           = msrle_decode_init,
    .close          = msrle_decode_end,
    .decode         = msrle_decode_frame,
    .capabilities   = CODEC_CAP_DR1,
156
    .long_name= NULL_IF_CONFIG_SMALL("Microsoft RLE"),
157
};