asvenc.c 12.1 KB
Newer Older
1 2 3
/*
 * Copyright (c) 2003 Michael Niedermayer
 *
4
 * This file is part of FFmpeg.
5
 *
6
 * FFmpeg is free software; you can redistribute it and/or
7 8 9 10
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
11
 * FFmpeg is distributed in the hope that it will be useful,
12 13 14 15 16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with FFmpeg; if not, write to the Free Software
18 19 20 21 22 23 24 25
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
 * @file
 * ASUS V1/V2 encoder.
 */

26
#include "libavutil/attributes.h"
27 28
#include "libavutil/mem.h"

29
#include "aandcttab.h"
30 31
#include "asv.h"
#include "avcodec.h"
32
#include "dct.h"
33
#include "fdctdsp.h"
34
#include "internal.h"
35
#include "mathops.h"
36 37
#include "mpeg12data.h"

38 39 40
static inline void asv2_put_bits(PutBitContext *pb, int n, int v)
{
    put_bits(pb, n, ff_reverse[v << (8 - n)]);
41 42
}

43 44 45
static inline void asv1_put_level(PutBitContext *pb, int level)
{
    unsigned int index = level + 3;
46

47 48 49
    if (index <= 6) {
        put_bits(pb, ff_asv_level_tab[index][1], ff_asv_level_tab[index][0]);
    } else {
50 51 52 53 54
        put_bits(pb, ff_asv_level_tab[3][1], ff_asv_level_tab[3][0]);
        put_sbits(pb, 8, level);
    }
}

55
static inline void asv2_put_level(ASV1Context *a, PutBitContext *pb, int level)
56 57
{
    unsigned int index = level + 31;
58

59 60 61
    if (index <= 62) {
        put_bits(pb, ff_asv2_level_tab[index][1], ff_asv2_level_tab[index][0]);
    } else {
62
        put_bits(pb, ff_asv2_level_tab[31][1], ff_asv2_level_tab[31][0]);
63
        if (level < -128 || level > 127) {
Moritz Barsnick's avatar
Moritz Barsnick committed
64
            av_log(a->avctx, AV_LOG_WARNING, "Clipping level %d, increase qscale\n", level);
65 66
            level = av_clip_int8(level);
        }
67
        asv2_put_bits(pb, 8, level & 0xFF);
68 69 70
    }
}

71 72
static inline void asv1_encode_block(ASV1Context *a, int16_t block[64])
{
73
    int i;
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
    int nc_count = 0;

    put_bits(&a->pb, 8, (block[0] + 32) >> 6);
    block[0] = 0;

    for (i = 0; i < 10; i++) {
        const int index = ff_asv_scantab[4 * i];
        int ccp         = 0;

        if ((block[index + 0] = (block[index + 0] *
                                 a->q_intra_matrix[index + 0] + (1 << 15)) >> 16))
            ccp |= 8;
        if ((block[index + 8] = (block[index + 8] *
                                 a->q_intra_matrix[index + 8] + (1 << 15)) >> 16))
            ccp |= 4;
        if ((block[index + 1] = (block[index + 1] *
                                 a->q_intra_matrix[index + 1] + (1 << 15)) >> 16))
            ccp |= 2;
        if ((block[index + 9] = (block[index + 9] *
                                 a->q_intra_matrix[index + 9] + (1 << 15)) >> 16))
            ccp |= 1;

        if (ccp) {
            for (; nc_count; nc_count--)
98 99 100 101
                put_bits(&a->pb, ff_asv_ccp_tab[0][1], ff_asv_ccp_tab[0][0]);

            put_bits(&a->pb, ff_asv_ccp_tab[ccp][1], ff_asv_ccp_tab[ccp][0]);

102 103 104 105 106 107 108 109 110
            if (ccp & 8)
                asv1_put_level(&a->pb, block[index + 0]);
            if (ccp & 4)
                asv1_put_level(&a->pb, block[index + 8]);
            if (ccp & 2)
                asv1_put_level(&a->pb, block[index + 1]);
            if (ccp & 1)
                asv1_put_level(&a->pb, block[index + 9]);
        } else {
111 112 113 114 115 116
            nc_count++;
        }
    }
    put_bits(&a->pb, ff_asv_ccp_tab[16][1], ff_asv_ccp_tab[16][0]);
}

117 118
static inline void asv2_encode_block(ASV1Context *a, int16_t block[64])
{
119
    int i;
120
    int count = 0;
121

122
    for (count = 63; count > 3; count--) {
123
        const int index = ff_asv_scantab[count];
124
        if ((block[index] * a->q_intra_matrix[index] + (1 << 15)) >> 16)
125 126 127 128 129 130
            break;
    }

    count >>= 2;

    asv2_put_bits(&a->pb, 4, count);
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
    asv2_put_bits(&a->pb, 8, (block[0] + 32) >> 6);
    block[0] = 0;

    for (i = 0; i <= count; i++) {
        const int index = ff_asv_scantab[4 * i];
        int ccp         = 0;

        if ((block[index + 0] = (block[index + 0] *
                                 a->q_intra_matrix[index + 0] + (1 << 15)) >> 16))
            ccp |= 8;
        if ((block[index + 8] = (block[index + 8] *
                                 a->q_intra_matrix[index + 8] + (1 << 15)) >> 16))
            ccp |= 4;
        if ((block[index + 1] = (block[index + 1] *
                                 a->q_intra_matrix[index + 1] + (1 << 15)) >> 16))
            ccp |= 2;
        if ((block[index + 9] = (block[index + 9] *
                                 a->q_intra_matrix[index + 9] + (1 << 15)) >> 16))
            ccp |= 1;

151
        av_assert2(i || ccp < 8);
152 153 154 155 156 157 158
        if (i)
            put_bits(&a->pb, ff_asv_ac_ccp_tab[ccp][1], ff_asv_ac_ccp_tab[ccp][0]);
        else
            put_bits(&a->pb, ff_asv_dc_ccp_tab[ccp][1], ff_asv_dc_ccp_tab[ccp][0]);

        if (ccp) {
            if (ccp & 8)
159
                asv2_put_level(a, &a->pb, block[index + 0]);
160
            if (ccp & 4)
161
                asv2_put_level(a, &a->pb, block[index + 8]);
162
            if (ccp & 2)
163
                asv2_put_level(a, &a->pb, block[index + 1]);
164
            if (ccp & 1)
165
                asv2_put_level(a, &a->pb, block[index + 9]);
166 167 168 169
        }
    }
}

170
#define MAX_MB_SIZE (30 * 16 * 16 * 3 / 2 / 8)
171

172 173
static inline int encode_mb(ASV1Context *a, int16_t block[6][64])
{
174 175
    int i;

176
    if (a->pb.buf_end - a->pb.buf - (put_bits_count(&a->pb) >> 3) < MAX_MB_SIZE) {
177 178 179 180
        av_log(a->avctx, AV_LOG_ERROR, "encoded frame too large\n");
        return -1;
    }

181 182
    if (a->avctx->codec_id == AV_CODEC_ID_ASV1) {
        for (i = 0; i < 6; i++)
183
            asv1_encode_block(a, block[i]);
184
    } else {
185
        for (i = 0; i < 6; i++) {
186
            asv2_encode_block(a, block[i]);
187
        }
188 189 190 191
    }
    return 0;
}

192 193 194
static inline void dct_get(ASV1Context *a, const AVFrame *frame,
                           int mb_x, int mb_y)
{
195
    int16_t (*block)[64] = a->block;
196
    int linesize = frame->linesize[0];
197 198
    int i;

199 200 201
    uint8_t *ptr_y  = frame->data[0] + (mb_y * 16 * linesize)           + mb_x * 16;
    uint8_t *ptr_cb = frame->data[1] + (mb_y *  8 * frame->linesize[1]) + mb_x *  8;
    uint8_t *ptr_cr = frame->data[2] + (mb_y *  8 * frame->linesize[2]) + mb_x *  8;
202

203 204 205 206
    a->pdsp.get_pixels(block[0], ptr_y,                    linesize);
    a->pdsp.get_pixels(block[1], ptr_y + 8,                linesize);
    a->pdsp.get_pixels(block[2], ptr_y + 8 * linesize,     linesize);
    a->pdsp.get_pixels(block[3], ptr_y + 8 * linesize + 8, linesize);
207
    for (i = 0; i < 4; i++)
208
        a->fdsp.fdct(block[i]);
209

210
    if (!(a->avctx->flags & AV_CODEC_FLAG_GRAY)) {
211 212
        a->pdsp.get_pixels(block[4], ptr_cb, frame->linesize[1]);
        a->pdsp.get_pixels(block[5], ptr_cr, frame->linesize[2]);
213
        for (i = 4; i < 6; i++)
214
            a->fdsp.fdct(block[i]);
215 216 217 218 219 220
    }
}

static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
                        const AVFrame *pict, int *got_packet)
{
221
    ASV1Context *const a = avctx->priv_data;
222 223 224
    int size, ret;
    int mb_x, mb_y;

225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
    if (pict->width % 16 || pict->height % 16) {
        AVFrame *clone = av_frame_alloc();
        int i;

        if (!clone)
            return AVERROR(ENOMEM);
        clone->format = pict->format;
        clone->width  = FFALIGN(pict->width, 16);
        clone->height = FFALIGN(pict->height, 16);
        ret = av_frame_get_buffer(clone, 32);
        if (ret < 0) {
            av_frame_free(&clone);
            return ret;
        }

        ret = av_frame_copy(clone, pict);
        if (ret < 0) {
            av_frame_free(&clone);
            return ret;
        }

        for (i = 0; i<3; i++) {
            int x, y;
248 249 250 251
            int w  = AV_CEIL_RSHIFT(pict->width, !!i);
            int h  = AV_CEIL_RSHIFT(pict->height, !!i);
            int w2 = AV_CEIL_RSHIFT(clone->width, !!i);
            int h2 = AV_CEIL_RSHIFT(clone->height, !!i);
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
            for (y=0; y<h; y++)
                for (x=w; x<w2; x++)
                    clone->data[i][x + y*clone->linesize[i]] =
                        clone->data[i][w - 1 + y*clone->linesize[i]];
            for (y=h; y<h2; y++)
                for (x=0; x<w2; x++)
                    clone->data[i][x + y*clone->linesize[i]] =
                        clone->data[i][x + (h-1)*clone->linesize[i]];
        }
        ret = encode_frame(avctx, pkt, clone, got_packet);

        av_frame_free(&clone);
        return ret;
    }

267
    if ((ret = ff_alloc_packet2(avctx, pkt, a->mb_height * a->mb_width * MAX_MB_SIZE +
268
                                AV_INPUT_BUFFER_MIN_SIZE, 0)) < 0)
269 270 271 272
        return ret;

    init_put_bits(&a->pb, pkt->data, pkt->size);

273 274
    for (mb_y = 0; mb_y < a->mb_height2; mb_y++) {
        for (mb_x = 0; mb_x < a->mb_width2; mb_x++) {
275
            dct_get(a, pict, mb_x, mb_y);
276 277 278 279
            encode_mb(a, a->block);
        }
    }

280 281 282
    if (a->mb_width2 != a->mb_width) {
        mb_x = a->mb_width2;
        for (mb_y = 0; mb_y < a->mb_height2; mb_y++) {
283
            dct_get(a, pict, mb_x, mb_y);
284 285 286 287
            encode_mb(a, a->block);
        }
    }

288 289 290
    if (a->mb_height2 != a->mb_height) {
        mb_y = a->mb_height2;
        for (mb_x = 0; mb_x < a->mb_width; mb_x++) {
291
            dct_get(a, pict, mb_x, mb_y);
292 293 294 295 296 297
            encode_mb(a, a->block);
        }
    }
    emms_c();

    avpriv_align_put_bits(&a->pb);
298
    while (put_bits_count(&a->pb) & 31)
299 300
        put_bits(&a->pb, 8, 0);

301
    size = put_bits_count(&a->pb) / 32;
302

303
    if (avctx->codec_id == AV_CODEC_ID_ASV1) {
304 305
        a->bbdsp.bswap_buf((uint32_t *) pkt->data,
                           (uint32_t *) pkt->data, size);
306
    } else {
307
        int i;
308
        for (i = 0; i < 4 * size; i++)
309
            pkt->data[i] = ff_reverse[pkt->data[i]];
310 311
    }

312
    pkt->size   = size * 4;
313 314 315 316 317 318
    pkt->flags |= AV_PKT_FLAG_KEY;
    *got_packet = 1;

    return 0;
}

319 320 321
static av_cold int encode_init(AVCodecContext *avctx)
{
    ASV1Context *const a = avctx->priv_data;
322
    int i;
323
    const int scale = avctx->codec_id == AV_CODEC_ID_ASV1 ? 1 : 2;
324 325

    ff_asv_common_init(avctx);
326
    ff_fdctdsp_init(&a->fdsp, avctx);
327
    ff_pixblockdsp_init(&a->pdsp, avctx);
328

329
    if (avctx->global_quality <= 0)
330
        avctx->global_quality = 4 * FF_QUALITY_SCALE;
331

332 333
    a->inv_qscale = (32 * scale * FF_QUALITY_SCALE +
                     avctx->global_quality / 2) / avctx->global_quality;
334

335
    avctx->extradata                   = av_mallocz(8);
336 337
    if (!avctx->extradata)
        return AVERROR(ENOMEM);
338 339 340
    avctx->extradata_size              = 8;
    ((uint32_t *) avctx->extradata)[0] = av_le2ne32(a->inv_qscale);
    ((uint32_t *) avctx->extradata)[1] = av_le2ne32(AV_RL32("ASUS"));
341

342
    for (i = 0; i < 64; i++) {
343 344 345 346 347 348 349
        if (a->fdsp.fdct == ff_fdct_ifast) {
            int q = 32LL * scale * ff_mpeg1_default_intra_matrix[i] * ff_aanscales[i];
            a->q_intra_matrix[i] = (((int64_t)a->inv_qscale << 30) + q / 2) / q;
        } else {
            int q = 32 * scale * ff_mpeg1_default_intra_matrix[i];
            a->q_intra_matrix[i] = ((a->inv_qscale << 16) + q / 2) / q;
        }
350 351 352 353 354 355 356 357
    }

    return 0;
}

#if CONFIG_ASV1_ENCODER
AVCodec ff_asv1_encoder = {
    .name           = "asv1",
358
    .long_name      = NULL_IF_CONFIG_SMALL("ASUS V1"),
359 360 361 362 363
    .type           = AVMEDIA_TYPE_VIDEO,
    .id             = AV_CODEC_ID_ASV1,
    .priv_data_size = sizeof(ASV1Context),
    .init           = encode_init,
    .encode2        = encode_frame,
364 365
    .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P,
                                                     AV_PIX_FMT_NONE },
366
    .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,
367 368 369 370 371 372
};
#endif

#if CONFIG_ASV2_ENCODER
AVCodec ff_asv2_encoder = {
    .name           = "asv2",
373
    .long_name      = NULL_IF_CONFIG_SMALL("ASUS V2"),
374 375 376 377 378
    .type           = AVMEDIA_TYPE_VIDEO,
    .id             = AV_CODEC_ID_ASV2,
    .priv_data_size = sizeof(ASV1Context),
    .init           = encode_init,
    .encode2        = encode_frame,
379 380
    .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P,
                                                     AV_PIX_FMT_NONE },
381
    .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,
382 383
};
#endif