]> git.sesse.net Git - ffmpeg/blob - libavcodec/cljrdec.c
Merge commit 'b0633f83f277c05bf1f617a99c7aedd2db8306e3'
[ffmpeg] / libavcodec / cljrdec.c
1 /*
2  * Cirrus Logic AccuPak (CLJR) decoder
3  * Copyright (c) 2003 Alex Beregszaszi
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * 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  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * 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  * Cirrus Logic AccuPak decoder.
25  */
26
27 #include "avcodec.h"
28 #include "libavutil/opt.h"
29 #include "get_bits.h"
30 #include "internal.h"
31
32 static int decode_frame(AVCodecContext *avctx,
33                         void *data, int *got_frame,
34                         AVPacket *avpkt)
35 {
36     const uint8_t *buf = avpkt->data;
37     int buf_size       = avpkt->size;
38     GetBitContext gb;
39     AVFrame * const p = data;
40     int x, y, ret;
41
42     if (avctx->height <= 0 || avctx->width <= 0) {
43         av_log(avctx, AV_LOG_ERROR, "Invalid width or height\n");
44         return AVERROR_INVALIDDATA;
45     }
46
47     if (buf_size / avctx->height < avctx->width) {
48         av_log(avctx, AV_LOG_ERROR,
49                "Resolution larger than buffer size. Invalid header?\n");
50         return AVERROR_INVALIDDATA;
51     }
52
53     if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
54         return ret;
55     p->pict_type = AV_PICTURE_TYPE_I;
56     p->key_frame = 1;
57
58     init_get_bits(&gb, buf, buf_size * 8);
59
60     for (y = 0; y < avctx->height; y++) {
61         uint8_t *luma = &p->data[0][y * p->linesize[0]];
62         uint8_t *cb   = &p->data[1][y * p->linesize[1]];
63         uint8_t *cr   = &p->data[2][y * p->linesize[2]];
64         for (x = 0; x < avctx->width; x += 4) {
65             luma[3] = (get_bits(&gb, 5)*33) >> 2;
66             luma[2] = (get_bits(&gb, 5)*33) >> 2;
67             luma[1] = (get_bits(&gb, 5)*33) >> 2;
68             luma[0] = (get_bits(&gb, 5)*33) >> 2;
69             luma += 4;
70             *(cb++) = get_bits(&gb, 6) << 2;
71             *(cr++) = get_bits(&gb, 6) << 2;
72         }
73     }
74
75     *got_frame = 1;
76
77     return buf_size;
78 }
79
80 static av_cold int decode_init(AVCodecContext *avctx)
81 {
82     avctx->pix_fmt = AV_PIX_FMT_YUV411P;
83     return 0;
84 }
85
86 AVCodec ff_cljr_decoder = {
87     .name           = "cljr",
88     .long_name      = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
89     .type           = AVMEDIA_TYPE_VIDEO,
90     .id             = AV_CODEC_ID_CLJR,
91     .init           = decode_init,
92     .decode         = decode_frame,
93     .capabilities   = CODEC_CAP_DR1,
94 };
95