annotate ffmpeg/libavcodec/proresdsp.c @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents 6840f77b83aa
children
rev   line source
yading@10 1 /*
yading@10 2 * Apple ProRes compatible decoder
yading@10 3 *
yading@10 4 * Copyright (c) 2010-2011 Maxim Poliakovski
yading@10 5 *
yading@10 6 * This file is part of Libav.
yading@10 7 *
yading@10 8 * Libav is free software; you can redistribute it and/or
yading@10 9 * modify it under the terms of the GNU Lesser General Public
yading@10 10 * License as published by the Free Software Foundation; either
yading@10 11 * version 2.1 of the License, or (at your option) any later version.
yading@10 12 *
yading@10 13 * Libav is distributed in the hope that it will be useful,
yading@10 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@10 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@10 16 * Lesser General Public License for more details.
yading@10 17 *
yading@10 18 * You should have received a copy of the GNU Lesser General Public
yading@10 19 * License along with Libav; if not, write to the Free Software
yading@10 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@10 21 */
yading@10 22
yading@10 23 #include "dct.h"
yading@10 24 #include "dsputil.h"
yading@10 25 #include "proresdsp.h"
yading@10 26 #include "simple_idct.h"
yading@10 27 #include "libavutil/common.h"
yading@10 28
yading@10 29 #define BIAS (1 << (PRORES_BITS_PER_SAMPLE - 1)) ///< bias value for converting signed pixels into unsigned ones
yading@10 30 #define CLIP_MIN (1 << (PRORES_BITS_PER_SAMPLE - 8)) ///< minimum value for clipping resulting pixels
yading@10 31 #define CLIP_MAX (1 << PRORES_BITS_PER_SAMPLE) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels
yading@10 32
yading@10 33 #define CLIP_AND_BIAS(x) (av_clip((x) + BIAS, CLIP_MIN, CLIP_MAX))
yading@10 34
yading@10 35 #if CONFIG_PRORES_DECODER | CONFIG_PRORES_LGPL_DECODER
yading@10 36 /**
yading@10 37 * Add bias value, clamp and output pixels of a slice
yading@10 38 */
yading@10 39 static void put_pixels(uint16_t *dst, int stride, const int16_t *in)
yading@10 40 {
yading@10 41 int x, y, src_offset, dst_offset;
yading@10 42
yading@10 43 for (y = 0, dst_offset = 0; y < 8; y++, dst_offset += stride) {
yading@10 44 for (x = 0; x < 8; x++) {
yading@10 45 src_offset = (y << 3) + x;
yading@10 46
yading@10 47 dst[dst_offset + x] = CLIP_AND_BIAS(in[src_offset]);
yading@10 48 }
yading@10 49 }
yading@10 50 }
yading@10 51
yading@10 52 static void prores_idct_put_c(uint16_t *out, int linesize, int16_t *block, const int16_t *qmat)
yading@10 53 {
yading@10 54 ff_prores_idct(block, qmat);
yading@10 55 put_pixels(out, linesize >> 1, block);
yading@10 56 }
yading@10 57 #endif
yading@10 58
yading@10 59 #if CONFIG_PRORES_KS_ENCODER
yading@10 60 static void prores_fdct_c(const uint16_t *src, int linesize, int16_t *block)
yading@10 61 {
yading@10 62 int x, y;
yading@10 63 const uint16_t *tsrc = src;
yading@10 64
yading@10 65 for (y = 0; y < 8; y++) {
yading@10 66 for (x = 0; x < 8; x++)
yading@10 67 block[y * 8 + x] = tsrc[x];
yading@10 68 tsrc += linesize >> 1;
yading@10 69 }
yading@10 70 ff_jpeg_fdct_islow_10(block);
yading@10 71 }
yading@10 72 #endif
yading@10 73
yading@10 74 void ff_proresdsp_init(ProresDSPContext *dsp, AVCodecContext *avctx)
yading@10 75 {
yading@10 76 #if CONFIG_PRORES_DECODER | CONFIG_PRORES_LGPL_DECODER
yading@10 77 dsp->idct_put = prores_idct_put_c;
yading@10 78 dsp->idct_permutation_type = FF_NO_IDCT_PERM;
yading@10 79
yading@10 80 if (ARCH_X86) ff_proresdsp_x86_init(dsp, avctx);
yading@10 81
yading@10 82 ff_init_scantable_permutation(dsp->idct_permutation,
yading@10 83 dsp->idct_permutation_type);
yading@10 84 #endif
yading@10 85 #if CONFIG_PRORES_KS_ENCODER
yading@10 86 dsp->fdct = prores_fdct_c;
yading@10 87 dsp->dct_permutation_type = FF_NO_IDCT_PERM;
yading@10 88 ff_init_scantable_permutation(dsp->dct_permutation,
yading@10 89 dsp->dct_permutation_type);
yading@10 90 #endif
yading@10 91 }