/src/ffmpeg/libavcodec/xl.c
Line | Count | Source |
1 | | /* |
2 | | * Miro VideoXL codec |
3 | | * Copyright (c) 2004 Konstantin Shishkov |
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 | | * Miro VideoXL codec. |
25 | | */ |
26 | | |
27 | | #include "libavutil/common.h" |
28 | | #include "libavutil/intreadwrite.h" |
29 | | #include "avcodec.h" |
30 | | #include "codec_internal.h" |
31 | | #include "decode.h" |
32 | | |
33 | | static const int xl_table[32] = { |
34 | | 0, 1, 2, 3, 4, 5, 6, 7, |
35 | | 8, 9, 12, 15, 20, 25, 34, 46, |
36 | | 64, 82, 94, 103, 108, 113, 116, 119, |
37 | | 120, 121, 122, 123, 124, 125, 126, 127 |
38 | | }; |
39 | | |
40 | | static int decode_frame(AVCodecContext *avctx, AVFrame *p, |
41 | | int *got_frame, AVPacket *avpkt) |
42 | 443k | { |
43 | 443k | const uint8_t *buf = avpkt->data; |
44 | 443k | int buf_size = avpkt->size; |
45 | 443k | uint8_t *Y, *U, *V; |
46 | 443k | int i, j, ret; |
47 | 443k | int stride; |
48 | 443k | uint32_t val; |
49 | 443k | int y0, y1, y2, y3 = 0, c0 = 0, c1 = 0; |
50 | | |
51 | 443k | if (avctx->width % 4) { |
52 | 40.5k | av_log(avctx, AV_LOG_ERROR, "width is not a multiple of 4\n"); |
53 | 40.5k | return AVERROR_INVALIDDATA; |
54 | 40.5k | } |
55 | 403k | if (buf_size < avctx->width * avctx->height) { |
56 | 266k | av_log(avctx, AV_LOG_ERROR, "Packet is too small\n"); |
57 | 266k | return AVERROR_INVALIDDATA; |
58 | 266k | } |
59 | | |
60 | 136k | if ((ret = ff_get_buffer(avctx, p, 0)) < 0) |
61 | 15.2k | return ret; |
62 | | |
63 | 121k | Y = p->data[0]; |
64 | 121k | U = p->data[1]; |
65 | 121k | V = p->data[2]; |
66 | | |
67 | 121k | stride = avctx->width - 4; |
68 | | |
69 | 438k | for (i = 0; i < avctx->height; i++) { |
70 | | /* lines are stored in reversed order */ |
71 | 317k | buf += stride; |
72 | | |
73 | 1.81M | for (j = 0; j < avctx->width; j += 4) { |
74 | | /* value is stored in LE dword with word swapped */ |
75 | 1.50M | val = AV_RL32(buf); |
76 | 1.50M | buf -= 4; |
77 | 1.50M | val = ((val >> 16) & 0xFFFF) | ((val & 0xFFFF) << 16); |
78 | | |
79 | 1.50M | if (!j) |
80 | 317k | y0 = (val & 0x1F) << 2; |
81 | 1.18M | else |
82 | 1.18M | y0 = y3 + xl_table[val & 0x1F]; |
83 | 1.50M | val >>= 5; |
84 | 1.50M | y1 = y0 + xl_table[val & 0x1F]; |
85 | 1.50M | val >>= 5; |
86 | 1.50M | y2 = y1 + xl_table[val & 0x1F]; |
87 | 1.50M | val >>= 6; /* align to word */ |
88 | 1.50M | y3 = y2 + xl_table[val & 0x1F]; |
89 | 1.50M | val >>= 5; |
90 | 1.50M | if (!j) |
91 | 317k | c0 = (val & 0x1F) << 2; |
92 | 1.18M | else |
93 | 1.18M | c0 += xl_table[val & 0x1F]; |
94 | 1.50M | val >>= 5; |
95 | 1.50M | if (!j) |
96 | 317k | c1 = (val & 0x1F) << 2; |
97 | 1.18M | else |
98 | 1.18M | c1 += xl_table[val & 0x1F]; |
99 | | |
100 | 1.50M | Y[j + 0] = y0 << 1; |
101 | 1.50M | Y[j + 1] = y1 << 1; |
102 | 1.50M | Y[j + 2] = y2 << 1; |
103 | 1.50M | Y[j + 3] = y3 << 1; |
104 | | |
105 | 1.50M | U[j >> 2] = c0 << 1; |
106 | 1.50M | V[j >> 2] = c1 << 1; |
107 | 1.50M | } |
108 | | |
109 | 317k | buf += avctx->width + 4; |
110 | 317k | Y += p->linesize[0]; |
111 | 317k | U += p->linesize[1]; |
112 | 317k | V += p->linesize[2]; |
113 | 317k | } |
114 | | |
115 | 121k | *got_frame = 1; |
116 | | |
117 | 121k | return buf_size; |
118 | 136k | } |
119 | | |
120 | | static av_cold int decode_init(AVCodecContext *avctx) |
121 | 725 | { |
122 | 725 | avctx->pix_fmt = AV_PIX_FMT_YUV411P; |
123 | | |
124 | 725 | return 0; |
125 | 725 | } |
126 | | |
127 | | const FFCodec ff_xl_decoder = { |
128 | | .p.name = "xl", |
129 | | CODEC_LONG_NAME("Miro VideoXL"), |
130 | | .p.type = AVMEDIA_TYPE_VIDEO, |
131 | | .p.id = AV_CODEC_ID_VIXL, |
132 | | .init = decode_init, |
133 | | FF_CODEC_DECODE_CB(decode_frame), |
134 | | .p.capabilities = AV_CODEC_CAP_DR1, |
135 | | }; |