]> git.sesse.net Git - ffmpeg/blob - libavcodec/sp5xdec.c
AMV video decoder.
[ffmpeg] / libavcodec / sp5xdec.c
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     AV_WB16(recoded+j+5, avctx->coded_height);
69     AV_WB16(recoded+j+7, avctx->coded_width);
70     j += sizeof(sp5x_data_sof);
71
72     memcpy(recoded+j, &sp5x_data_sos[0], sizeof(sp5x_data_sos));
73     j += sizeof(sp5x_data_sos);
74
75     if(avctx->codec_id==CODEC_ID_AMV)
76         for (i = 2; i < buf_size-2 && j < buf_size+1024-2; i++)
77             recoded[j++] = buf[i];
78     else
79     for (i = 14; i < buf_size && j < buf_size+1024-2; i++)
80     {
81         recoded[j++] = buf[i];
82         if (buf[i] == 0xff)
83             recoded[j++] = 0;
84     }
85
86     /* EOI */
87     recoded[j++] = 0xFF;
88     recoded[j++] = 0xD9;
89
90     i = ff_mjpeg_decode_frame(avctx, data, data_size, recoded, j);
91
92     av_free(recoded);
93
94 #else
95     /* SOF */
96     s->bits = 8;
97     s->width  = avctx->coded_width;
98     s->height = avctx->coded_height;
99     s->nb_components = 3;
100     s->component_id[0] = 0;
101     s->h_count[0] = 2;
102     s->v_count[0] = 2;
103     s->quant_index[0] = 0;
104     s->component_id[1] = 1;
105     s->h_count[1] = 1;
106     s->v_count[1] = 1;
107     s->quant_index[1] = 1;
108     s->component_id[2] = 2;
109     s->h_count[2] = 1;
110     s->v_count[2] = 1;
111     s->quant_index[2] = 1;
112     s->h_max = 2;
113     s->v_max = 2;
114
115     s->qscale_table = av_mallocz((s->width+15)/16);
116     avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV420P : PIX_FMT_YUVJ420;
117     s->interlaced = 0;
118
119     s->picture.reference = 0;
120     if (avctx->get_buffer(avctx, &s->picture) < 0)
121     {
122         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
123         return -1;
124     }
125
126     s->picture.pict_type = I_TYPE;
127     s->picture.key_frame = 1;
128
129     for (i = 0; i < 3; i++)
130         s->linesize[i] = s->picture.linesize[i] << s->interlaced;
131
132     /* DQT */
133     for (i = 0; i < 64; i++)
134     {
135         j = s->scantable.permutated[i];
136         s->quant_matrixes[0][j] = sp5x_quant_table[(qscale * 2) + i];
137     }
138     s->qscale[0] = FFMAX(
139         s->quant_matrixes[0][s->scantable.permutated[1]],
140         s->quant_matrixes[0][s->scantable.permutated[8]]) >> 1;
141
142     for (i = 0; i < 64; i++)
143     {
144         j = s->scantable.permutated[i];
145         s->quant_matrixes[1][j] = sp5x_quant_table[(qscale * 2) + 1 + i];
146     }
147     s->qscale[1] = FFMAX(
148         s->quant_matrixes[1][s->scantable.permutated[1]],
149         s->quant_matrixes[1][s->scantable.permutated[8]]) >> 1;
150
151     /* DHT */
152
153     /* SOS */
154     s->comp_index[0] = 0;
155     s->nb_blocks[0] = s->h_count[0] * s->v_count[0];
156     s->h_scount[0] = s->h_count[0];
157     s->v_scount[0] = s->v_count[0];
158     s->dc_index[0] = 0;
159     s->ac_index[0] = 0;
160
161     s->comp_index[1] = 1;
162     s->nb_blocks[1] = s->h_count[1] * s->v_count[1];
163     s->h_scount[1] = s->h_count[1];
164     s->v_scount[1] = s->v_count[1];
165     s->dc_index[1] = 1;
166     s->ac_index[1] = 1;
167
168     s->comp_index[2] = 2;
169     s->nb_blocks[2] = s->h_count[2] * s->v_count[2];
170     s->h_scount[2] = s->h_count[2];
171     s->v_scount[2] = s->v_count[2];
172     s->dc_index[2] = 1;
173     s->ac_index[2] = 1;
174
175     for (i = 0; i < 3; i++)
176         s->last_dc[i] = 1024;
177
178     s->mb_width = (s->width * s->h_max * 8 -1) / (s->h_max * 8);
179     s->mb_height = (s->height * s->v_max * 8 -1) / (s->v_max * 8);
180
181     init_get_bits(&s->gb, buf+14, (buf_size-14)*8);
182
183     return mjpeg_decode_scan(s);
184 #endif
185
186     return i;
187 }
188
189 AVCodec sp5x_decoder = {
190     "sp5x",
191     CODEC_TYPE_VIDEO,
192     CODEC_ID_SP5X,
193     sizeof(MJpegDecodeContext),
194     ff_mjpeg_decode_init,
195     NULL,
196     ff_mjpeg_decode_end,
197     sp5x_decode_frame,
198     CODEC_CAP_DR1,
199     NULL
200 };
201
202 AVCodec amv_decoder = {
203     "amv",
204     CODEC_TYPE_VIDEO,
205     CODEC_ID_AMV,
206     sizeof(MJpegDecodeContext),
207     ff_mjpeg_decode_init,
208     NULL,
209     ff_mjpeg_decode_end,
210     sp5x_decode_frame,
211     CODEC_CAP_DR1
212 };