cljr.c 4.97 KB
Newer Older
Alex Beregszaszi's avatar
Alex Beregszaszi committed
1 2 3 4
/*
 * Cirrus Logic AccuPak (CLJR) codec
 * Copyright (c) 2003 Alex Beregszaszi
 *
5
 * This file is part of Libav.
6
 *
7
 * Libav 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
 * Libav 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 Libav; 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
Alex Beregszaszi's avatar
Alex Beregszaszi committed
24 25
 * Cirrus Logic AccuPak codec.
 */
26

Alex Beregszaszi's avatar
Alex Beregszaszi committed
27
#include "avcodec.h"
28
#include "get_bits.h"
Paul B Mahol's avatar
Paul B Mahol committed
29
#include "put_bits.h"
30

Diego Biurrun's avatar
Diego Biurrun committed
31 32
typedef struct CLJRContext {
    AVFrame         picture;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
33 34
} CLJRContext;

35 36 37 38
static av_cold int common_init(AVCodecContext *avctx)
{
    CLJRContext * const a = avctx->priv_data;

39
    avctx->coded_frame = &a->picture;
40 41 42 43 44

    return 0;
}

#if CONFIG_CLJR_DECODER
45
static int decode_frame(AVCodecContext *avctx,
Alex Beregszaszi's avatar
Alex Beregszaszi committed
46
                        void *data, int *data_size,
47
                        AVPacket *avpkt)
Alex Beregszaszi's avatar
Alex Beregszaszi committed
48
{
49
    const uint8_t *buf = avpkt->data;
Diego Biurrun's avatar
Diego Biurrun committed
50
    int buf_size       = avpkt->size;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
51
    CLJRContext * const a = avctx->priv_data;
52
    GetBitContext gb;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
53
    AVFrame *picture = data;
54
    AVFrame * const p = &a->picture;
55
    int x, y;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
56

Diego Biurrun's avatar
Diego Biurrun committed
57
    if (p->data[0])
Alex Beregszaszi's avatar
Alex Beregszaszi committed
58 59
        avctx->release_buffer(avctx, p);

60 61 62 63 64
    if (avctx->height <= 0 || avctx->width <= 0) {
        av_log(avctx, AV_LOG_ERROR, "Invalid width or height\n");
        return AVERROR_INVALIDDATA;
    }

65
    if (buf_size < avctx->height * avctx->width) {
Diego Biurrun's avatar
Diego Biurrun committed
66 67
        av_log(avctx, AV_LOG_ERROR,
               "Resolution larger than buffer size. Invalid header?\n");
68
        return AVERROR_INVALIDDATA;
69 70
    }

Diego Biurrun's avatar
Diego Biurrun committed
71 72
    p->reference = 0;
    if (avctx->get_buffer(avctx, p) < 0) {
73
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
Alex Beregszaszi's avatar
Alex Beregszaszi committed
74 75
        return -1;
    }
Diego Biurrun's avatar
Diego Biurrun committed
76 77
    p->pict_type = AV_PICTURE_TYPE_I;
    p->key_frame = 1;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
78

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

Diego Biurrun's avatar
Diego Biurrun committed
81 82 83 84 85
    for (y = 0; y < avctx->height; y++) {
        uint8_t *luma = &a->picture.data[0][y * a->picture.linesize[0]];
        uint8_t *cb   = &a->picture.data[1][y * a->picture.linesize[1]];
        uint8_t *cr   = &a->picture.data[2][y * a->picture.linesize[2]];
        for (x = 0; x < avctx->width; x += 4) {
86 87 88 89
            luma[3] = get_bits(&gb, 5) << 3;
            luma[2] = get_bits(&gb, 5) << 3;
            luma[1] = get_bits(&gb, 5) << 3;
            luma[0] = get_bits(&gb, 5) << 3;
Diego Biurrun's avatar
Diego Biurrun committed
90
            luma += 4;
91 92
            *(cb++) = get_bits(&gb, 6) << 2;
            *(cr++) = get_bits(&gb, 6) << 2;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
93 94 95
        }
    }

Diego Biurrun's avatar
Diego Biurrun committed
96
    *picture   = a->picture;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
97 98 99 100 101
    *data_size = sizeof(AVPicture);

    return buf_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 128 129
static av_cold int decode_init(AVCodecContext *avctx)
{
    avctx->pix_fmt = PIX_FMT_YUV411P;
    return common_init(avctx);
}

static av_cold int decode_end(AVCodecContext *avctx)
{
    CLJRContext *a = avctx->priv_data;

    if (a->picture.data[0])
        avctx->release_buffer(avctx, &a->picture);
    return 0;
}

AVCodec ff_cljr_decoder = {
    .name           = "cljr",
    .type           = AVMEDIA_TYPE_VIDEO,
    .id             = CODEC_ID_CLJR,
    .priv_data_size = sizeof(CLJRContext),
    .init           = decode_init,
    .close          = decode_end,
    .decode         = decode_frame,
    .capabilities   = CODEC_CAP_DR1,
    .long_name      = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
};
#endif

130
#if CONFIG_CLJR_ENCODER
Diego Biurrun's avatar
Diego Biurrun committed
131 132 133
static int encode_frame(AVCodecContext *avctx, unsigned char *buf,
                        int buf_size, void *data)
{
Paul B Mahol's avatar
Paul B Mahol committed
134 135 136
    PutBitContext pb;
    AVFrame *p = data;
    int x, y;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
137

Diego Biurrun's avatar
Diego Biurrun committed
138 139
    p->pict_type = AV_PICTURE_TYPE_I;
    p->key_frame = 1;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
140

Paul B Mahol's avatar
Paul B Mahol committed
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
    init_put_bits(&pb, buf, buf_size / 8);

    for (y = 0; y < avctx->height; y++) {
        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]];
        for (x = 0; x < avctx->width; x += 4) {
            put_bits(&pb, 5, luma[3] >> 3);
            put_bits(&pb, 5, luma[2] >> 3);
            put_bits(&pb, 5, luma[1] >> 3);
            put_bits(&pb, 5, luma[0] >> 3);
            luma += 4;
            put_bits(&pb, 6, *(cb++) >> 2);
            put_bits(&pb, 6, *(cr++) >> 2);
        }
    }
157

Paul B Mahol's avatar
Paul B Mahol committed
158
    flush_put_bits(&pb);
159

Paul B Mahol's avatar
Paul B Mahol committed
160
    return put_bits_count(&pb) / 8;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
161 162
}

163
AVCodec ff_cljr_encoder = {
164 165 166 167
    .name           = "cljr",
    .type           = AVMEDIA_TYPE_VIDEO,
    .id             = CODEC_ID_CLJR,
    .priv_data_size = sizeof(CLJRContext),
168
    .init           = common_init,
169
    .encode         = encode_frame,
Paul B Mahol's avatar
Paul B Mahol committed
170 171 172
    .pix_fmts       = (const enum PixelFormat[]) { PIX_FMT_YUV411P,
                                                   PIX_FMT_NONE },
    .long_name      = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
Alex Beregszaszi's avatar
Alex Beregszaszi committed
173
};
174
#endif