808
|
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 /**
|
|
24 * @file xl.c
|
|
25 * Miro VideoXL codec.
|
|
26 */
|
|
27
|
|
28 #include "avcodec.h"
|
|
29 #include "mpegvideo.h"
|
|
30
|
|
31 typedef struct VideoXLContext{
|
|
32 AVCodecContext *avctx;
|
|
33 AVFrame pic;
|
|
34 } VideoXLContext;
|
|
35
|
|
36 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 static int decode_frame(AVCodecContext *avctx,
|
|
43 void *data, int *data_size,
|
|
44 uint8_t *buf, int buf_size)
|
|
45 {
|
|
46 VideoXLContext * const a = avctx->priv_data;
|
|
47 AVFrame * const p= (AVFrame*)&a->pic;
|
|
48 uint8_t *Y, *U, *V;
|
|
49 int i, j;
|
|
50 int stride;
|
|
51 uint32_t val;
|
|
52 int y0, y1, y2, y3, c0, c1;
|
|
53
|
|
54 if(p->data[0])
|
|
55 avctx->release_buffer(avctx, p);
|
|
56
|
|
57 p->reference = 0;
|
|
58 if(avctx->get_buffer(avctx, p) < 0){
|
|
59 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
|
|
60 return -1;
|
|
61 }
|
|
62 p->pict_type= I_TYPE;
|
|
63 p->key_frame= 1;
|
|
64
|
|
65 Y = a->pic.data[0];
|
|
66 U = a->pic.data[1];
|
|
67 V = a->pic.data[2];
|
|
68
|
|
69 stride = avctx->width - 4;
|
|
70 for (i = 0; i < avctx->height; i++) {
|
|
71 /* lines are stored in reversed order */
|
|
72 buf += stride;
|
|
73
|
|
74 for (j = 0; j < avctx->width; j += 4) {
|
|
75 /* value is stored in LE dword with word swapped */
|
|
76 val = LE_32(buf);
|
|
77 buf -= 4;
|
|
78 val = ((val >> 16) & 0xFFFF) | ((val & 0xFFFF) << 16);
|
|
79
|
|
80 if(!j)
|
|
81 y0 = (val & 0x1F) << 2;
|
|
82 else
|
|
83 y0 = y3 + xl_table[val & 0x1F];
|
|
84 val >>= 5;
|
|
85 y1 = y0 + xl_table[val & 0x1F];
|
|
86 val >>= 5;
|
|
87 y2 = y1 + xl_table[val & 0x1F];
|
|
88 val >>= 6; /* align to word */
|
|
89 y3 = y2 + xl_table[val & 0x1F];
|
|
90 val >>= 5;
|
|
91 if(!j)
|
|
92 c0 = (val & 0x1F) << 2;
|
|
93 else
|
|
94 c0 += xl_table[val & 0x1F];
|
|
95 val >>= 5;
|
|
96 if(!j)
|
|
97 c1 = (val & 0x1F) << 2;
|
|
98 else
|
|
99 c1 += xl_table[val & 0x1F];
|
|
100
|
|
101 Y[j + 0] = y0 << 1;
|
|
102 Y[j + 1] = y1 << 1;
|
|
103 Y[j + 2] = y2 << 1;
|
|
104 Y[j + 3] = y3 << 1;
|
|
105
|
|
106 U[j >> 2] = c0 << 1;
|
|
107 V[j >> 2] = c1 << 1;
|
|
108 }
|
|
109
|
|
110 buf += avctx->width + 4;
|
|
111 Y += a->pic.linesize[0];
|
|
112 U += a->pic.linesize[1];
|
|
113 V += a->pic.linesize[2];
|
|
114 }
|
|
115
|
|
116 *data_size = sizeof(AVFrame);
|
|
117 *(AVFrame*)data = a->pic;
|
|
118
|
|
119 return buf_size;
|
|
120 }
|
|
121
|
|
122 static int decode_init(AVCodecContext *avctx){
|
|
123 // VideoXLContext * const a = avctx->priv_data;
|
|
124
|
|
125 avctx->pix_fmt= PIX_FMT_YUV411P;
|
|
126
|
|
127 return 0;
|
|
128 }
|
|
129
|
|
130 AVCodec xl_decoder = {
|
|
131 "xl",
|
|
132 CODEC_TYPE_VIDEO,
|
|
133 CODEC_ID_VIXL,
|
|
134 sizeof(VideoXLContext),
|
|
135 decode_init,
|
|
136 NULL,
|
|
137 NULL,
|
|
138 decode_frame,
|
|
139 CODEC_CAP_DR1,
|
|
140 };
|