3 * Copyright (c) 2004 Konstantin Shishkov
5 * This file is part of FFmpeg.
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.
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.
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
27 #include "libavutil/common.h"
28 #include "libavutil/intreadwrite.h"
31 typedef struct VideoXLContext{
32 AVCodecContext *avctx;
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};
42 static int decode_frame(AVCodecContext *avctx,
43 void *data, int *data_size,
46 const uint8_t *buf = avpkt->data;
47 int buf_size = avpkt->size;
48 VideoXLContext * const a = avctx->priv_data;
49 AVFrame * const p = &a->pic;
54 int y0, y1, y2, y3 = 0, c0 = 0, c1 = 0;
56 if (avctx->width & 3) {
57 av_log(avctx, AV_LOG_ERROR, "width is not a multiple of 4\n");
58 return AVERROR_INVALIDDATA;
61 if (buf_size < avctx->width * avctx->height) {
62 av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
63 return AVERROR_INVALIDDATA;
67 avctx->release_buffer(avctx, p);
70 if ((ret = avctx->get_buffer(avctx, p)) < 0) {
71 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
74 p->pict_type= AV_PICTURE_TYPE_I;
81 stride = avctx->width - 4;
83 for (i = 0; i < avctx->height; i++) {
84 /* lines are stored in reversed order */
87 for (j = 0; j < avctx->width; j += 4) {
88 /* value is stored in LE dword with word swapped */
91 val = ((val >> 16) & 0xFFFF) | ((val & 0xFFFF) << 16);
94 y0 = (val & 0x1F) << 2;
96 y0 = y3 + xl_table[val & 0x1F];
98 y1 = y0 + xl_table[val & 0x1F];
100 y2 = y1 + xl_table[val & 0x1F];
101 val >>= 6; /* align to word */
102 y3 = y2 + xl_table[val & 0x1F];
105 c0 = (val & 0x1F) << 2;
107 c0 += xl_table[val & 0x1F];
110 c1 = (val & 0x1F) << 2;
112 c1 += xl_table[val & 0x1F];
123 buf += avctx->width + 4;
124 Y += a->pic.linesize[0];
125 U += a->pic.linesize[1];
126 V += a->pic.linesize[2];
129 *data_size = sizeof(AVFrame);
130 *(AVFrame*)data = a->pic;
135 static av_cold int decode_init(AVCodecContext *avctx){
136 VideoXLContext * const a = avctx->priv_data;
138 avcodec_get_frame_defaults(&a->pic);
139 avctx->pix_fmt= AV_PIX_FMT_YUV411P;
144 static av_cold int decode_end(AVCodecContext *avctx){
145 VideoXLContext * const a = avctx->priv_data;
146 AVFrame *pic = &a->pic;
149 avctx->release_buffer(avctx, pic);
154 AVCodec ff_xl_decoder = {
156 .type = AVMEDIA_TYPE_VIDEO,
157 .id = AV_CODEC_ID_VIXL,
158 .priv_data_size = sizeof(VideoXLContext),
161 .decode = decode_frame,
162 .capabilities = CODEC_CAP_DR1,
163 .long_name = NULL_IF_CONFIG_SMALL("Miro VideoXL"),