msrle.c 3.15 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 libavcodec/msrle.c
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 40
 */

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

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

typedef struct MsrleContext {
    AVCodecContext *avctx;
    AVFrame frame;

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

} MsrleContext;

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

    s->avctx = avctx;

    avctx->pix_fmt = PIX_FMT_PAL8;
59
    s->frame.data[0] = NULL;
60 61 62 63 64 65

    return 0;
}

static int msrle_decode_frame(AVCodecContext *avctx,
                              void *data, int *data_size,
Michael Niedermayer's avatar
Michael Niedermayer committed
66
                              const uint8_t *buf, int buf_size)
67
{
68
    MsrleContext *s = avctx->priv_data;
69 70 71 72

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

73
    s->frame.reference = 1;
74 75 76
    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");
77 78 79
        return -1;
    }

80 81 82 83 84
    /* 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;
Roberto Togni's avatar
Roberto Togni committed
85
    }
86

87
    ff_msrle_decode(avctx, (AVPicture*)&s->frame, avctx->bits_per_coded_sample, buf, buf_size);
88

89 90 91 92 93 94 95
    *data_size = sizeof(AVFrame);
    *(AVFrame*)data = s->frame;

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

96
static av_cold int msrle_decode_end(AVCodecContext *avctx)
97
{
98
    MsrleContext *s = avctx->priv_data;
99 100

    /* release the last frame */
101 102
    if (s->frame.data[0])
        avctx->release_buffer(avctx, &s->frame);
103 104 105 106 107 108 109 110 111 112 113 114 115

    return 0;
}

AVCodec msrle_decoder = {
    "msrle",
    CODEC_TYPE_VIDEO,
    CODEC_ID_MSRLE,
    sizeof(MsrleContext),
    msrle_decode_init,
    NULL,
    msrle_decode_end,
    msrle_decode_frame,
116
    CODEC_CAP_DR1,
117
    .long_name= NULL_IF_CONFIG_SMALL("Microsoft RLE"),
118
};