]> git.sesse.net Git - ffmpeg/blob - libavcodec/xl.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / xl.c
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
31 typedef struct VideoXLContext{
32     AVCodecContext *avctx;
33     AVFrame pic;
34 } VideoXLContext;
35
36 static const int xl_table[32] = {
37    0,   1,   2,   3,   4,   5,   6,   7,
38    8,   9,  12,  15,  20,  25,  34,  46,
39   64,  82,  94, 103, 108, 113, 116, 119,
40  120, 121, 122, 123, 124, 125, 126, 127
41 };
42
43 static int decode_frame(AVCodecContext *avctx,
44                         void *data, int *data_size,
45                         AVPacket *avpkt)
46 {
47     const uint8_t *buf = avpkt->data;
48     int buf_size = avpkt->size;
49     VideoXLContext * const a = avctx->priv_data;
50     AVFrame * const p = &a->pic;
51     uint8_t *Y, *U, *V;
52     int i, j, ret;
53     int stride;
54     uint32_t val;
55     int y0, y1, y2, y3 = 0, c0 = 0, c1 = 0;
56
57     if (avctx->width & 3) {
58         av_log(avctx, AV_LOG_ERROR, "width is not a multiple of 4\n");
59         return AVERROR_INVALIDDATA;
60     }
61
62     if (buf_size < avctx->width * avctx->height) {
63         av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
64         return AVERROR_INVALIDDATA;
65     }
66
67     if (p->data[0])
68         avctx->release_buffer(avctx, p);
69
70     p->reference = 0;
71     if ((ret = avctx->get_buffer(avctx, p)) < 0) {
72         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
73         return ret;
74     }
75     p->pict_type = AV_PICTURE_TYPE_I;
76     p->key_frame = 1;
77
78     Y = a->pic.data[0];
79     U = a->pic.data[1];
80     V = a->pic.data[2];
81
82     stride = avctx->width - 4;
83
84     for (i = 0; i < avctx->height; i++) {
85         /* lines are stored in reversed order */
86         buf += stride;
87
88         for (j = 0; j < avctx->width; j += 4) {
89             /* value is stored in LE dword with word swapped */
90             val = AV_RL32(buf);
91             buf -= 4;
92             val = ((val >> 16) & 0xFFFF) | ((val & 0xFFFF) << 16);
93
94             if(!j)
95                 y0 = (val & 0x1F) << 2;
96             else
97                 y0 = y3 + xl_table[val & 0x1F];
98             val >>= 5;
99             y1 = y0 + xl_table[val & 0x1F];
100             val >>= 5;
101             y2 = y1 + xl_table[val & 0x1F];
102             val >>= 6; /* align to word */
103             y3 = y2 + xl_table[val & 0x1F];
104             val >>= 5;
105             if(!j)
106                 c0 = (val & 0x1F) << 2;
107             else
108                 c0 += xl_table[val & 0x1F];
109             val >>= 5;
110             if(!j)
111                 c1 = (val & 0x1F) << 2;
112             else
113                 c1 += xl_table[val & 0x1F];
114
115             Y[j + 0] = y0 << 1;
116             Y[j + 1] = y1 << 1;
117             Y[j + 2] = y2 << 1;
118             Y[j + 3] = y3 << 1;
119
120             U[j >> 2] = c0 << 1;
121             V[j >> 2] = c1 << 1;
122         }
123
124         buf += avctx->width + 4;
125         Y += a->pic.linesize[0];
126         U += a->pic.linesize[1];
127         V += a->pic.linesize[2];
128     }
129
130     *data_size = sizeof(AVFrame);
131     *(AVFrame*)data = a->pic;
132
133     return buf_size;
134 }
135
136 static av_cold int decode_init(AVCodecContext *avctx)
137 {
138     VideoXLContext * const a = avctx->priv_data;
139
140     avcodec_get_frame_defaults(&a->pic);
141     avctx->pix_fmt = AV_PIX_FMT_YUV411P;
142
143     return 0;
144 }
145
146 static av_cold int decode_end(AVCodecContext *avctx)
147 {
148     VideoXLContext * const a = avctx->priv_data;
149     AVFrame *pic = &a->pic;
150
151     if (pic->data[0])
152         avctx->release_buffer(avctx, pic);
153
154     return 0;
155 }
156
157 AVCodec ff_xl_decoder = {
158     .name           = "xl",
159     .type           = AVMEDIA_TYPE_VIDEO,
160     .id             = AV_CODEC_ID_VIXL,
161     .priv_data_size = sizeof(VideoXLContext),
162     .init           = decode_init,
163     .close          = decode_end,
164     .decode         = decode_frame,
165     .capabilities   = CODEC_CAP_DR1,
166     .long_name      = NULL_IF_CONFIG_SMALL("Miro VideoXL"),
167 };