cljrdec.c 2.79 KB
Newer Older
Alex Beregszaszi's avatar
Alex Beregszaszi committed
1
/*
2
 * Cirrus Logic AccuPak (CLJR) decoder
Alex Beregszaszi's avatar
Alex Beregszaszi committed
3 4
 * Copyright (c) 2003 Alex Beregszaszi
 *
5
 * This file is part of FFmpeg.
6
 *
7
 * FFmpeg is free software; you can redistribute it and/or
Alex Beregszaszi's avatar
Alex Beregszaszi committed
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.
Alex Beregszaszi's avatar
Alex Beregszaszi committed
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
Alex Beregszaszi's avatar
Alex Beregszaszi committed
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
Alex Beregszaszi's avatar
Alex Beregszaszi committed
20
 */
21

Alex Beregszaszi's avatar
Alex Beregszaszi committed
22
/**
23
 * @file
24
 * Cirrus Logic AccuPak decoder.
Alex Beregszaszi's avatar
Alex Beregszaszi committed
25
 */
26

Alex Beregszaszi's avatar
Alex Beregszaszi committed
27
#include "avcodec.h"
28
#include "get_bits.h"
Anton Khirnov's avatar
Anton Khirnov committed
29
#include "internal.h"
30

31
static int decode_frame(AVCodecContext *avctx,
32
                        void *data, int *got_frame,
33
                        AVPacket *avpkt)
Alex Beregszaszi's avatar
Alex Beregszaszi committed
34
{
35
    const uint8_t *buf = avpkt->data;
Diego Biurrun's avatar
Diego Biurrun committed
36
    int buf_size       = avpkt->size;
37
    GetBitContext gb;
38
    AVFrame * const p = data;
39
    int x, y, ret;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
40

41 42 43 44 45
    if (avctx->height <= 0 || avctx->width <= 0) {
        av_log(avctx, AV_LOG_ERROR, "Invalid width or height\n");
        return AVERROR_INVALIDDATA;
    }

46
    if (buf_size / avctx->height < avctx->width) {
Diego Biurrun's avatar
Diego Biurrun committed
47 48
        av_log(avctx, AV_LOG_ERROR,
               "Resolution larger than buffer size. Invalid header?\n");
49
        return AVERROR_INVALIDDATA;
50 51
    }

52
    if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
53
        return ret;
Diego Biurrun's avatar
Diego Biurrun committed
54 55
    p->pict_type = AV_PICTURE_TYPE_I;
    p->key_frame = 1;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
56

57
    init_get_bits(&gb, buf, buf_size * 8);
Alex Beregszaszi's avatar
Alex Beregszaszi committed
58

Diego Biurrun's avatar
Diego Biurrun committed
59
    for (y = 0; y < avctx->height; y++) {
60 61 62
        uint8_t *luma = &p->data[0][y * p->linesize[0]];
        uint8_t *cb   = &p->data[1][y * p->linesize[1]];
        uint8_t *cr   = &p->data[2][y * p->linesize[2]];
Diego Biurrun's avatar
Diego Biurrun committed
63
        for (x = 0; x < avctx->width; x += 4) {
64 65 66 67
            luma[3] = (get_bits(&gb, 5)*33) >> 2;
            luma[2] = (get_bits(&gb, 5)*33) >> 2;
            luma[1] = (get_bits(&gb, 5)*33) >> 2;
            luma[0] = (get_bits(&gb, 5)*33) >> 2;
Diego Biurrun's avatar
Diego Biurrun committed
68
            luma += 4;
69 70
            *(cb++) = get_bits(&gb, 6) << 2;
            *(cr++) = get_bits(&gb, 6) << 2;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
71 72 73
        }
    }

74
    *got_frame = 1;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
75 76 77 78

    return buf_size;
}

79 80
static av_cold int decode_init(AVCodecContext *avctx)
{
81
    avctx->pix_fmt = AV_PIX_FMT_YUV411P;
82 83 84 85 86
    return 0;
}

AVCodec ff_cljr_decoder = {
    .name           = "cljr",
87
    .long_name      = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
88
    .type           = AVMEDIA_TYPE_VIDEO,
89
    .id             = AV_CODEC_ID_CLJR,
90 91
    .init           = decode_init,
    .decode         = decode_frame,
92
    .capabilities   = AV_CODEC_CAP_DR1,
93
};
94