comparison sp5xdec.c @ 5042:259b58518ecc libavcodec

move sp5x decoder in its own file
author aurel
date Sat, 19 May 2007 14:40:02 +0000
parents mjpegdec.c@01a165280429
children bff60ecc02f9
comparison
equal deleted inserted replaced
5041:01a165280429 5042:259b58518ecc
1 /*
2 * Sunplus JPEG decoder (SP5X)
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 sp5xdec.c
24 * Sunplus JPEG decoder (SP5X).
25 */
26
27 #include "avcodec.h"
28 #include "mjpeg.h"
29 #include "mjpegdec.h"
30 #include "sp5x.h"
31
32
33 static int sp5x_decode_frame(AVCodecContext *avctx,
34 void *data, int *data_size,
35 uint8_t *buf, int buf_size)
36 {
37 #if 0
38 MJpegDecodeContext *s = avctx->priv_data;
39 #endif
40 const int qscale = 5;
41 uint8_t *buf_ptr, *buf_end, *recoded;
42 int i = 0, j = 0;
43
44 if (!avctx->width || !avctx->height)
45 return -1;
46
47 buf_ptr = buf;
48 buf_end = buf + buf_size;
49
50 #if 1
51 recoded = av_mallocz(buf_size + 1024);
52 if (!recoded)
53 return -1;
54
55 /* SOI */
56 recoded[j++] = 0xFF;
57 recoded[j++] = 0xD8;
58
59 memcpy(recoded+j, &sp5x_data_dqt[0], sizeof(sp5x_data_dqt));
60 memcpy(recoded+j+5, &sp5x_quant_table[qscale * 2], 64);
61 memcpy(recoded+j+70, &sp5x_quant_table[(qscale * 2) + 1], 64);
62 j += sizeof(sp5x_data_dqt);
63
64 memcpy(recoded+j, &sp5x_data_dht[0], sizeof(sp5x_data_dht));
65 j += sizeof(sp5x_data_dht);
66
67 memcpy(recoded+j, &sp5x_data_sof[0], sizeof(sp5x_data_sof));
68 recoded[j+5] = (avctx->coded_height >> 8) & 0xFF;
69 recoded[j+6] = avctx->coded_height & 0xFF;
70 recoded[j+7] = (avctx->coded_width >> 8) & 0xFF;
71 recoded[j+8] = avctx->coded_width & 0xFF;
72 j += sizeof(sp5x_data_sof);
73
74 memcpy(recoded+j, &sp5x_data_sos[0], sizeof(sp5x_data_sos));
75 j += sizeof(sp5x_data_sos);
76
77 for (i = 14; i < buf_size && j < buf_size+1024-2; i++)
78 {
79 recoded[j++] = buf[i];
80 if (buf[i] == 0xff)
81 recoded[j++] = 0;
82 }
83
84 /* EOI */
85 recoded[j++] = 0xFF;
86 recoded[j++] = 0xD9;
87
88 i = ff_mjpeg_decode_frame(avctx, data, data_size, recoded, j);
89
90 av_free(recoded);
91
92 #else
93 /* SOF */
94 s->bits = 8;
95 s->width = avctx->coded_width;
96 s->height = avctx->coded_height;
97 s->nb_components = 3;
98 s->component_id[0] = 0;
99 s->h_count[0] = 2;
100 s->v_count[0] = 2;
101 s->quant_index[0] = 0;
102 s->component_id[1] = 1;
103 s->h_count[1] = 1;
104 s->v_count[1] = 1;
105 s->quant_index[1] = 1;
106 s->component_id[2] = 2;
107 s->h_count[2] = 1;
108 s->v_count[2] = 1;
109 s->quant_index[2] = 1;
110 s->h_max = 2;
111 s->v_max = 2;
112
113 s->qscale_table = av_mallocz((s->width+15)/16);
114 avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV420P : PIX_FMT_YUVJ420;
115 s->interlaced = 0;
116
117 s->picture.reference = 0;
118 if (avctx->get_buffer(avctx, &s->picture) < 0)
119 {
120 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
121 return -1;
122 }
123
124 s->picture.pict_type = I_TYPE;
125 s->picture.key_frame = 1;
126
127 for (i = 0; i < 3; i++)
128 s->linesize[i] = s->picture.linesize[i] << s->interlaced;
129
130 /* DQT */
131 for (i = 0; i < 64; i++)
132 {
133 j = s->scantable.permutated[i];
134 s->quant_matrixes[0][j] = sp5x_quant_table[(qscale * 2) + i];
135 }
136 s->qscale[0] = FFMAX(
137 s->quant_matrixes[0][s->scantable.permutated[1]],
138 s->quant_matrixes[0][s->scantable.permutated[8]]) >> 1;
139
140 for (i = 0; i < 64; i++)
141 {
142 j = s->scantable.permutated[i];
143 s->quant_matrixes[1][j] = sp5x_quant_table[(qscale * 2) + 1 + i];
144 }
145 s->qscale[1] = FFMAX(
146 s->quant_matrixes[1][s->scantable.permutated[1]],
147 s->quant_matrixes[1][s->scantable.permutated[8]]) >> 1;
148
149 /* DHT */
150
151 /* SOS */
152 s->comp_index[0] = 0;
153 s->nb_blocks[0] = s->h_count[0] * s->v_count[0];
154 s->h_scount[0] = s->h_count[0];
155 s->v_scount[0] = s->v_count[0];
156 s->dc_index[0] = 0;
157 s->ac_index[0] = 0;
158
159 s->comp_index[1] = 1;
160 s->nb_blocks[1] = s->h_count[1] * s->v_count[1];
161 s->h_scount[1] = s->h_count[1];
162 s->v_scount[1] = s->v_count[1];
163 s->dc_index[1] = 1;
164 s->ac_index[1] = 1;
165
166 s->comp_index[2] = 2;
167 s->nb_blocks[2] = s->h_count[2] * s->v_count[2];
168 s->h_scount[2] = s->h_count[2];
169 s->v_scount[2] = s->v_count[2];
170 s->dc_index[2] = 1;
171 s->ac_index[2] = 1;
172
173 for (i = 0; i < 3; i++)
174 s->last_dc[i] = 1024;
175
176 s->mb_width = (s->width * s->h_max * 8 -1) / (s->h_max * 8);
177 s->mb_height = (s->height * s->v_max * 8 -1) / (s->v_max * 8);
178
179 init_get_bits(&s->gb, buf+14, (buf_size-14)*8);
180
181 return mjpeg_decode_scan(s);
182 #endif
183
184 return i;
185 }
186
187 AVCodec sp5x_decoder = {
188 "sp5x",
189 CODEC_TYPE_VIDEO,
190 CODEC_ID_SP5X,
191 sizeof(MJpegDecodeContext),
192 ff_mjpeg_decode_init,
193 NULL,
194 ff_mjpeg_decode_end,
195 sp5x_decode_frame,
196 CODEC_CAP_DR1,
197 NULL
198 };