/src/ffmpeg/libavcodec/cljrdec.c
Line | Count | Source |
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 "codec_internal.h" |
29 | | #include "decode.h" |
30 | | #include "get_bits.h" |
31 | | |
32 | | static int decode_frame(AVCodecContext *avctx, AVFrame *p, |
33 | | int *got_frame, AVPacket *avpkt) |
34 | 454k | { |
35 | 454k | const uint8_t *buf = avpkt->data; |
36 | 454k | int buf_size = avpkt->size; |
37 | 454k | GetBitContext gb; |
38 | 454k | int x, y, ret; |
39 | | |
40 | 454k | if (avctx->height <= 0 || avctx->width <= 0) { |
41 | 11.6k | av_log(avctx, AV_LOG_ERROR, "Invalid width or height\n"); |
42 | 11.6k | return AVERROR_INVALIDDATA; |
43 | 11.6k | } |
44 | | |
45 | 442k | if (buf_size / avctx->height < avctx->width) { |
46 | 346k | av_log(avctx, AV_LOG_ERROR, |
47 | 346k | "Resolution larger than buffer size. Invalid header?\n"); |
48 | 346k | return AVERROR_INVALIDDATA; |
49 | 346k | } |
50 | | |
51 | 96.0k | if ((ret = ff_get_buffer(avctx, p, 0)) < 0) |
52 | 0 | return ret; |
53 | | |
54 | 96.0k | init_get_bits(&gb, buf, buf_size * 8); |
55 | | |
56 | 1.98M | for (y = 0; y < avctx->height; y++) { |
57 | 1.89M | uint8_t *luma = &p->data[0][y * p->linesize[0]]; |
58 | 1.89M | uint8_t *cb = &p->data[1][y * p->linesize[1]]; |
59 | 1.89M | uint8_t *cr = &p->data[2][y * p->linesize[2]]; |
60 | 5.66M | for (x = 0; x < avctx->width; x += 4) { |
61 | 3.77M | luma[3] = (get_bits(&gb, 5)*33) >> 2; |
62 | 3.77M | luma[2] = (get_bits(&gb, 5)*33) >> 2; |
63 | 3.77M | luma[1] = (get_bits(&gb, 5)*33) >> 2; |
64 | 3.77M | luma[0] = (get_bits(&gb, 5)*33) >> 2; |
65 | 3.77M | luma += 4; |
66 | 3.77M | *(cb++) = get_bits(&gb, 6) << 2; |
67 | 3.77M | *(cr++) = get_bits(&gb, 6) << 2; |
68 | 3.77M | } |
69 | 1.89M | } |
70 | | |
71 | 96.0k | *got_frame = 1; |
72 | | |
73 | 96.0k | return buf_size; |
74 | 96.0k | } |
75 | | |
76 | | static av_cold int decode_init(AVCodecContext *avctx) |
77 | 794 | { |
78 | 794 | avctx->pix_fmt = AV_PIX_FMT_YUV411P; |
79 | 794 | return 0; |
80 | 794 | } |
81 | | |
82 | | const FFCodec ff_cljr_decoder = { |
83 | | .p.name = "cljr", |
84 | | CODEC_LONG_NAME("Cirrus Logic AccuPak"), |
85 | | .p.type = AVMEDIA_TYPE_VIDEO, |
86 | | .p.id = AV_CODEC_ID_CLJR, |
87 | | .init = decode_init, |
88 | | FF_CODEC_DECODE_CB(decode_frame), |
89 | | .p.capabilities = AV_CODEC_CAP_DR1, |
90 | | }; |