Mercurial > libavcodec.hg
annotate dnxhddec.c @ 5466:587b3e6c8d4f libavcodec
no need to duplicate cid table vars in context
| author | bcoudurier |
|---|---|
| date | Sat, 04 Aug 2007 13:09:08 +0000 |
| parents | 6478c562c80f |
| children | 740cf5d1691e |
| rev | line source |
|---|---|
| 4687 | 1 /* |
| 2 * VC3/DNxHD decoder. | |
| 3 * Copyright (c) 2007 SmartJog S.A., Baptiste Coudurier <baptiste dot coudurier at smartjog dot com>. | |
| 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 //#define TRACE | |
| 23 //#define DEBUG | |
| 24 | |
| 25 #include "avcodec.h" | |
| 26 #include "bitstream.h" | |
| 27 #include "dnxhddata.h" | |
| 28 #include "dsputil.h" | |
| 29 #include "mpegvideo.h" | |
| 30 | |
| 31 typedef struct { | |
| 32 int cid; | |
| 33 unsigned int width, height; | |
| 34 int interlaced; | |
| 35 unsigned int frame_size; | |
| 5464 | 36 unsigned int coding_unit_size; |
| 4687 | 37 int index_bits; |
| 38 int bit_depth; | |
| 39 const uint8_t *luma_weigth, *chroma_weigth; | |
| 40 const uint8_t *dc_codes, *dc_bits; | |
| 41 const uint16_t *ac_codes; | |
| 42 const uint8_t *ac_bits, *ac_level; | |
| 43 const uint8_t *ac_run_flag, *ac_index_flag; | |
| 44 const uint16_t *run_codes; | |
| 45 const uint8_t *run_bits, *run; | |
| 46 } CIDEntry; | |
| 47 | |
| 48 typedef struct { | |
| 49 AVCodecContext *avctx; | |
| 50 AVFrame picture; | |
| 51 GetBitContext gb; | |
| 52 int cid; ///< compression id | |
| 53 unsigned int width, height; | |
| 54 unsigned int mb_width, mb_height; | |
| 55 uint32_t mb_scan_index[68]; /* max for 1080p */ | |
| 56 int cur_field; ///< current interlaced field | |
| 57 VLC ac_vlc, dc_vlc, run_vlc; | |
| 58 int last_dc[3]; | |
| 59 DSPContext dsp; | |
| 60 DECLARE_ALIGNED_16(DCTELEM, blocks[8][64]); | |
| 61 DECLARE_ALIGNED_8(ScanTable, scantable); | |
| 62 const CIDEntry *cid_table; | |
| 63 } DNXHDContext; | |
| 64 | |
| 65 static const CIDEntry cid_table[] = { | |
| 5464 | 66 { 1238, 1920, 1080, 0, 917504, 917504, 4, 8, |
| 4687 | 67 dnxhd_1238_luma_weigth, dnxhd_1238_chroma_weigth, |
| 68 dnxhd_1238_dc_codes, dnxhd_1238_dc_bits, | |
| 69 dnxhd_1238_ac_codes, dnxhd_1238_ac_bits, dnxhd_1238_ac_level, | |
| 70 dnxhd_1238_ac_run_flag, dnxhd_1238_ac_index_flag, | |
| 71 dnxhd_1238_run_codes, dnxhd_1238_run_bits, dnxhd_1238_run }, | |
| 5464 | 72 /* { 1243, 1920, 1080, 1, 917504, 458752, 4, 8, */ |
| 4687 | 73 /* dnxhd_1243_luma_weigth, dnxhd_1243_chroma_weigth, */ |
| 74 /* dnxhd_1238_dc_codes, dnxhd_1238_dc_bits, */ | |
| 75 /* dnxhd_1238_ac_codes, dnxhd_1238_ac_bits, dnxhd_1238_ac_level, */ | |
| 76 /* dnxhd_1238_ac_run_flag, dnxhd_1238_ac_index_flag, */ | |
| 77 /* dnxhd_1238_run_codes, dnxhd_1238_run_bits, dnxhd_1238_run }, */ | |
| 78 }; | |
| 79 | |
| 80 static int dnxhd_get_cid_table(int cid) | |
| 81 { | |
| 82 int i; | |
| 83 for (i = 0; i < sizeof(cid_table)/sizeof(CIDEntry); i++) | |
| 84 if (cid_table[i].cid == cid) | |
| 85 return i; | |
| 86 return -1; | |
| 87 } | |
| 88 | |
| 89 #define DNXHD_VLC_BITS 9 | |
| 90 #define DNXHD_DC_VLC_BITS 6 | |
| 91 | |
| 92 static int dnxhd_decode_init(AVCodecContext *avctx) | |
| 93 { | |
| 94 DNXHDContext *ctx = avctx->priv_data; | |
| 95 | |
| 96 ctx->avctx = avctx; | |
| 97 dsputil_init(&ctx->dsp, avctx); | |
| 98 avctx->coded_frame = &ctx->picture; | |
| 99 ctx->picture.type = FF_I_TYPE; | |
| 100 return 0; | |
| 101 } | |
| 102 | |
| 103 static int dnxhd_init_vlc(DNXHDContext *ctx, int cid) | |
| 104 { | |
| 105 if (!ctx->cid_table) { | |
| 106 int index; | |
| 107 | |
| 108 if ((index = dnxhd_get_cid_table(cid)) < 0) { | |
| 109 av_log(ctx->avctx, AV_LOG_ERROR, "unsupported cid %d\n", cid); | |
| 110 return -1; | |
| 111 } | |
| 112 ctx->cid_table = &cid_table[index]; | |
| 113 init_vlc(&ctx->ac_vlc, DNXHD_VLC_BITS, 257, | |
| 5465 | 114 ctx->cid_table->ac_bits, 1, 1, |
| 115 ctx->cid_table->ac_codes, 2, 2, 0); | |
| 4687 | 116 init_vlc(&ctx->dc_vlc, DNXHD_DC_VLC_BITS, 12, |
| 5465 | 117 ctx->cid_table->dc_bits, 1, 1, |
| 118 ctx->cid_table->dc_codes, 1, 1, 0); | |
| 4687 | 119 init_vlc(&ctx->run_vlc, DNXHD_VLC_BITS, 62, |
| 5465 | 120 ctx->cid_table->run_bits, 1, 1, |
| 121 ctx->cid_table->run_codes, 2, 2, 0); | |
| 4687 | 122 |
| 123 ff_init_scantable(ctx->dsp.idct_permutation, &ctx->scantable, ff_zigzag_direct); | |
| 124 } | |
| 125 return 0; | |
| 126 } | |
| 127 | |
| 128 static int dnxhd_decode_header(DNXHDContext *ctx, uint8_t *buf, int buf_size) | |
| 129 { | |
| 130 static const uint8_t header_prefix[] = { 0x00, 0x00, 0x02, 0x80, 0x01 }; | |
| 131 int i; | |
| 132 | |
| 133 if (buf_size < 0x280) | |
| 134 return -1; | |
| 135 | |
| 136 if (memcmp(buf, header_prefix, 5)) { | |
| 137 av_log(ctx->avctx, AV_LOG_ERROR, "error in header\n"); | |
| 138 return -1; | |
| 139 } | |
| 140 if (buf[5] & 2) {/* interlaced FIXME top or bottom */ | |
| 141 ctx->picture.interlaced_frame = 1; | |
| 142 av_log(ctx->avctx, AV_LOG_DEBUG, "interlaced %d\n", buf[5] & 3); | |
| 143 } | |
| 144 | |
| 145 ctx->height = AV_RB16(buf + 0x18); | |
| 146 ctx->width = AV_RB16(buf + 0x1a); | |
| 147 | |
|
4688
1cefcd7da878
10l, fix debug, dprintf does not have log level
bcoudurier
parents:
4687
diff
changeset
|
148 dprintf(ctx->avctx, "width %d, heigth %d\n", ctx->width, ctx->height); |
| 4687 | 149 |
| 150 if (buf[0x21] & 0x80) { | |
| 151 av_log(ctx->avctx, AV_LOG_ERROR, "10 bit per component\n"); | |
| 152 return -1; | |
| 153 } | |
| 154 | |
| 155 ctx->cid = AV_RB32(buf + 0x28); | |
|
4688
1cefcd7da878
10l, fix debug, dprintf does not have log level
bcoudurier
parents:
4687
diff
changeset
|
156 dprintf(ctx->avctx, "compression id %d\n", ctx->cid); |
| 4687 | 157 |
| 158 if (dnxhd_init_vlc(ctx, ctx->cid) < 0) | |
| 159 return -1; | |
| 160 | |
| 5464 | 161 if (buf_size < ctx->cid_table->coding_unit_size) { |
| 4687 | 162 av_log(ctx->avctx, AV_LOG_ERROR, "incorrect frame size\n"); |
| 163 return -1; | |
| 164 } | |
| 165 | |
| 166 ctx->mb_width = ctx->width>>4; | |
| 167 ctx->mb_height = buf[0x16d]; | |
| 168 | |
| 169 if (ctx->mb_height > 68) { | |
| 170 av_log(ctx->avctx, AV_LOG_ERROR, "mb height too big\n"); | |
| 171 return -1; | |
| 172 } | |
| 173 | |
|
4688
1cefcd7da878
10l, fix debug, dprintf does not have log level
bcoudurier
parents:
4687
diff
changeset
|
174 dprintf(ctx->avctx, "mb width %d, mb height %d\n", ctx->mb_width, ctx->mb_height); |
| 4687 | 175 for (i = 0; i < ctx->mb_height; i++) { |
| 176 ctx->mb_scan_index[i] = AV_RB32(buf + 0x170 + (i<<2)); | |
|
4688
1cefcd7da878
10l, fix debug, dprintf does not have log level
bcoudurier
parents:
4687
diff
changeset
|
177 dprintf(ctx->avctx, "mb scan index %d\n", ctx->mb_scan_index[i]); |
| 4687 | 178 if (buf_size < ctx->mb_scan_index[i] + 0x280) { |
| 179 av_log(ctx->avctx, AV_LOG_ERROR, "invalid mb scan index\n"); | |
| 180 return -1; | |
| 181 } | |
| 182 } | |
| 183 | |
| 184 return 0; | |
| 185 } | |
| 186 | |
| 187 static int dnxhd_decode_dc(DNXHDContext *ctx) | |
| 188 { | |
| 189 int len; | |
| 190 | |
| 191 len = get_vlc2(&ctx->gb, ctx->dc_vlc.table, DNXHD_DC_VLC_BITS, 1); | |
| 192 return len ? get_xbits(&ctx->gb, len) : 0; | |
| 193 } | |
| 194 | |
| 195 static void dnxhd_decode_dct_block(DNXHDContext *ctx, DCTELEM *block, int n, int qscale) | |
| 196 { | |
| 197 int i, j, index, index2; | |
| 198 int level, component, sign; | |
| 199 const uint8_t *weigth_matrix; | |
| 200 | |
| 201 if (n&2) { | |
| 202 component = 1 + (n&1); | |
| 5466 | 203 weigth_matrix = ctx->cid_table->chroma_weigth; |
| 4687 | 204 } else { |
| 205 component = 0; | |
| 5466 | 206 weigth_matrix = ctx->cid_table->luma_weigth; |
| 4687 | 207 } |
| 208 | |
| 209 ctx->last_dc[component] += dnxhd_decode_dc(ctx); | |
| 210 block[0] = ctx->last_dc[component]; | |
| 211 //av_log(ctx->avctx, AV_LOG_DEBUG, "dc %d\n", block[0]); | |
| 212 for (i = 1; ; i++) { | |
| 213 index = get_vlc2(&ctx->gb, ctx->ac_vlc.table, DNXHD_VLC_BITS, 2); | |
| 214 //av_log(ctx->avctx, AV_LOG_DEBUG, "index %d\n", index); | |
| 5466 | 215 level = ctx->cid_table->ac_level[index]; |
| 4687 | 216 if (!level) { /* EOB */ |
| 217 //av_log(ctx->avctx, AV_LOG_DEBUG, "EOB\n"); | |
| 218 return; | |
| 219 } | |
| 220 sign = get_sbits(&ctx->gb, 1); | |
| 221 | |
| 5466 | 222 if (ctx->cid_table->ac_index_flag[index]) { |
| 223 level += get_bits(&ctx->gb, ctx->cid_table->index_bits)<<6; | |
| 4687 | 224 } |
| 225 | |
| 5466 | 226 if (ctx->cid_table->ac_run_flag[index]) { |
| 4687 | 227 index2 = get_vlc2(&ctx->gb, ctx->run_vlc.table, DNXHD_VLC_BITS, 2); |
| 5466 | 228 i += ctx->cid_table->run[index2]; |
| 4687 | 229 } |
| 230 | |
| 231 j = ctx->scantable.permutated[i]; | |
| 232 //av_log(ctx->avctx, AV_LOG_DEBUG, "j %d\n", j); | |
| 233 //av_log(ctx->avctx, AV_LOG_DEBUG, "level %d, weigth %d\n", level, weigth_matrix[i]); | |
| 234 level = (2*level+1) * qscale * weigth_matrix[i]; | |
| 235 if (weigth_matrix[i] != 32) // FIXME 10bit | |
| 236 level += 32; | |
| 237 level >>= 6; | |
| 238 level = (level^sign) - sign; | |
| 239 | |
| 240 if (i > 63) { | |
| 241 av_log(ctx->avctx, AV_LOG_ERROR, "ac tex damaged %d, %d\n", n, i); | |
| 242 return; | |
| 243 } | |
| 244 | |
| 245 //av_log(NULL, AV_LOG_DEBUG, "i %d, j %d, end level %d\n", i, j, level); | |
| 246 block[j] = level; | |
| 247 } | |
| 248 } | |
| 249 | |
| 250 static int dnxhd_decode_macroblock(DNXHDContext *ctx, int x, int y) | |
| 251 { | |
| 252 int dct_linesize_luma = ctx->picture.linesize[0]; | |
| 253 int dct_linesize_chroma = ctx->picture.linesize[1]; | |
| 254 uint8_t *dest_y, *dest_u, *dest_v; | |
| 255 int dct_offset; | |
| 256 int qscale, i; | |
| 257 | |
| 258 ctx->dsp.clear_blocks(ctx->blocks[0]); | |
| 259 ctx->dsp.clear_blocks(ctx->blocks[2]); // FIXME change clear blocks to take block amount | |
| 260 | |
| 261 qscale = get_bits(&ctx->gb, 11); | |
| 262 skip_bits1(&ctx->gb); | |
| 263 //av_log(ctx->avctx, AV_LOG_DEBUG, "qscale %d\n", qscale); | |
| 264 | |
| 265 for (i = 0; i < 8; i++) { | |
| 266 dnxhd_decode_dct_block(ctx, ctx->blocks[i], i, qscale); | |
| 267 } | |
| 268 dest_y = ctx->picture.data[0] + ((y * dct_linesize_luma) << 4) + (x << 4); | |
| 269 dest_u = ctx->picture.data[1] + ((y * dct_linesize_chroma) << 4) + (x << 3); | |
| 270 dest_v = ctx->picture.data[2] + ((y * dct_linesize_chroma) << 4) + (x << 3); | |
| 271 | |
| 272 dct_offset = dct_linesize_luma << 3; | |
| 273 ctx->dsp.idct_put(dest_y, dct_linesize_luma, ctx->blocks[0]); | |
| 274 ctx->dsp.idct_put(dest_y + 8, dct_linesize_luma, ctx->blocks[1]); | |
| 275 ctx->dsp.idct_put(dest_y + dct_offset, dct_linesize_luma, ctx->blocks[4]); | |
| 276 ctx->dsp.idct_put(dest_y + dct_offset + 8, dct_linesize_luma, ctx->blocks[5]); | |
| 277 | |
| 278 if (!(ctx->avctx->flags & CODEC_FLAG_GRAY)) { | |
| 279 dct_offset = dct_linesize_chroma << 3; | |
| 280 ctx->dsp.idct_put(dest_u, dct_linesize_chroma, ctx->blocks[2]); | |
| 281 ctx->dsp.idct_put(dest_v, dct_linesize_chroma, ctx->blocks[3]); | |
| 282 ctx->dsp.idct_put(dest_u + dct_offset, dct_linesize_chroma, ctx->blocks[6]); | |
| 283 ctx->dsp.idct_put(dest_v + dct_offset, dct_linesize_chroma, ctx->blocks[7]); | |
| 284 } | |
| 285 | |
| 286 return 0; | |
| 287 } | |
| 288 | |
| 289 static int dnxhd_decode_macroblocks(DNXHDContext *ctx, uint8_t *buf, int buf_size) | |
| 290 { | |
| 291 int x, y; | |
| 292 for (y = 0; y < ctx->mb_height; y++) { | |
| 5463 | 293 ctx->last_dc[0] = |
| 294 ctx->last_dc[1] = | |
| 295 ctx->last_dc[2] = 1024; // 1024 for levels +128 | |
| 4687 | 296 init_get_bits(&ctx->gb, buf + ctx->mb_scan_index[y], (buf_size - ctx->mb_scan_index[y]) << 3); |
| 297 for (x = 0; x < ctx->mb_width; x++) { | |
| 298 //START_TIMER; | |
| 299 dnxhd_decode_macroblock(ctx, x, y); | |
| 300 //STOP_TIMER("decode macroblock"); | |
| 301 } | |
| 302 } | |
| 303 return 0; | |
| 304 } | |
| 305 | |
| 306 static int dnxhd_decode_frame(AVCodecContext *avctx, void *data, int *data_size, | |
| 307 uint8_t *buf, int buf_size) | |
| 308 { | |
| 309 DNXHDContext *ctx = avctx->priv_data; | |
| 310 AVFrame *picture = data; | |
| 311 | |
|
4688
1cefcd7da878
10l, fix debug, dprintf does not have log level
bcoudurier
parents:
4687
diff
changeset
|
312 dprintf(avctx, "frame size %d\n", buf_size); |
| 4687 | 313 |
| 314 if (dnxhd_decode_header(ctx, buf, buf_size) < 0) | |
| 315 return -1; | |
| 316 | |
| 317 avctx->pix_fmt = PIX_FMT_YUV422P; | |
| 318 if (avcodec_check_dimensions(avctx, ctx->width, ctx->height)) | |
| 319 return -1; | |
| 320 avcodec_set_dimensions(avctx, ctx->width, ctx->height); | |
| 321 | |
| 322 if (ctx->picture.data[0]) | |
| 323 avctx->release_buffer(avctx, &ctx->picture); | |
| 324 if (avctx->get_buffer(avctx, &ctx->picture) < 0) { | |
| 325 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); | |
| 326 return -1; | |
| 327 } | |
| 328 | |
| 329 dnxhd_decode_macroblocks(ctx, buf + 0x280, buf_size - 0x280); | |
| 330 | |
| 331 *picture = ctx->picture; | |
| 332 *data_size = sizeof(AVPicture); | |
| 4721 | 333 return buf_size; |
| 4687 | 334 } |
| 335 | |
| 336 static int dnxhd_decode_close(AVCodecContext *avctx) | |
| 337 { | |
| 338 DNXHDContext *ctx = avctx->priv_data; | |
| 339 | |
| 340 if(ctx->picture.data[0]) | |
| 341 avctx->release_buffer(avctx, &ctx->picture); | |
| 342 free_vlc(&ctx->ac_vlc); | |
| 343 free_vlc(&ctx->dc_vlc); | |
| 344 free_vlc(&ctx->run_vlc); | |
| 345 return 0; | |
| 346 } | |
| 347 | |
| 348 AVCodec dnxhd_decoder = { | |
| 349 "dnxhd", | |
| 350 CODEC_TYPE_VIDEO, | |
| 351 CODEC_ID_DNXHD, | |
| 352 sizeof(DNXHDContext), | |
| 353 dnxhd_decode_init, | |
| 354 NULL, | |
| 355 dnxhd_decode_close, | |
| 356 dnxhd_decode_frame, | |
| 357 CODEC_CAP_DR1, | |
| 358 }; |
