mpegvideo_xvmc.c 12.2 KB
Newer Older
1 2 3 4
/*
 * XVideo Motion Compensation
 * Copyright (c) 2003 Ivan Kalvachev
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * 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 14 15 16 17
 * 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
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
 */

Ivan Kalvachev's avatar
Ivan Kalvachev committed
22
#include <limits.h>
23
#include <X11/extensions/XvMC.h>
Ivan Kalvachev's avatar
Ivan Kalvachev committed
24 25 26 27 28 29 30 31

#include "avcodec.h"
#include "dsputil.h"
#include "mpegvideo.h"

#undef NDEBUG
#include <assert.h>

32
#include "xvmc.h"
33
#include "xvmc_internal.h"
34

35
/**
36
 * Initialize the block field of the MpegEncContext pointer passed as
37
 * parameter after making sure that the data is not corrupted.
38 39
 * In order to implement something like direct rendering instead of decoding
 * coefficients in s->blocks and then copying them, copy them directly
40
 * into the data_blocks array provided by xvmc.
41
 */
42
void ff_xvmc_init_block(MpegEncContext *s)
43
{
Mans Rullgard's avatar
Mans Rullgard committed
44
    struct xvmc_pix_fmt *render = (struct xvmc_pix_fmt*)s->current_picture.f.data[2];
45
    assert(render && render->xvmc_id == AV_XVMC_ID);
46

47
    s->block = (DCTELEM (*)[64])(render->data_blocks + render->next_free_data_block_num * 64);
48 49
}

50
/**
51
 * Fill individual block pointers, so there are no gaps in the data_block array
52
 * in case not all blocks in the macroblock are coded.
53
 */
54
void ff_xvmc_pack_pblocks(MpegEncContext *s, int cbp)
55
{
56
    int i, j = 0;
57
    const int mb_block_count = 4 + (1 << s->chroma_format);
58

59 60
    cbp <<= 12-mb_block_count;
    for (i = 0; i < mb_block_count; i++) {
61
        if (cbp & (1 << 11))
62
            s->pblocks[i] = &s->block[j++];
63
        else
64
            s->pblocks[i] = NULL;
65
        cbp += cbp;
66
    }
Ivan Kalvachev's avatar
Ivan Kalvachev committed
67 68
}

69
/**
70
 * Find and store the surfaces that are used as reference frames.
71 72 73
 * This function should be called for every new field and/or frame.
 * It should be safe to call the function a few times for the same field.
 */
Diego Biurrun's avatar
Diego Biurrun committed
74
int ff_xvmc_field_start(MpegEncContext *s, AVCodecContext *avctx)
75
{
Mans Rullgard's avatar
Mans Rullgard committed
76
    struct xvmc_pix_fmt *last, *next, *render = (struct xvmc_pix_fmt*)s->current_picture.f.data[2];
77
    const int mb_block_count = 4 + (1 << s->chroma_format);
Ivan Kalvachev's avatar
Ivan Kalvachev committed
78

79
    assert(avctx);
80
    if (!render || render->xvmc_id != AV_XVMC_ID ||
81 82 83 84
        !render->data_blocks || !render->mv_blocks ||
        (unsigned int)render->allocated_mv_blocks   > INT_MAX/(64*6) ||
        (unsigned int)render->allocated_data_blocks > INT_MAX/64     ||
        !render->p_surface) {
85 86
        av_log(avctx, AV_LOG_ERROR,
               "Render token doesn't look as expected.\n");
87
        return -1; // make sure that this is a render packet
88
    }
Ivan Kalvachev's avatar
Ivan Kalvachev committed
89

Diego Biurrun's avatar
Diego Biurrun committed
90
    if (render->filled_mv_blocks_num) {
91
        av_log(avctx, AV_LOG_ERROR,
92
               "Rendering surface contains %i unprocessed blocks.\n",
Diego Biurrun's avatar
Diego Biurrun committed
93
               render->filled_mv_blocks_num);
94
        return -1;
95
    }
96
    if (render->allocated_mv_blocks   < 1 ||
97 98 99 100 101
        render->allocated_data_blocks <  render->allocated_mv_blocks*mb_block_count ||
        render->start_mv_blocks_num   >= render->allocated_mv_blocks                ||
        render->next_free_data_block_num >
                        render->allocated_data_blocks -
                        mb_block_count*(render->allocated_mv_blocks-render->start_mv_blocks_num)) {
102 103 104 105
        av_log(avctx, AV_LOG_ERROR,
               "Rendering surface doesn't provide enough block structures to work with.\n");
        return -1;
    }
Ivan Kalvachev's avatar
Ivan Kalvachev committed
106

Ivan Kalvachev's avatar
Ivan Kalvachev committed
107 108
    render->picture_structure = s->picture_structure;
    render->flags             = s->first_field ? 0 : XVMC_SECOND_FIELD;
109 110
    render->p_future_surface  = NULL;
    render->p_past_surface    = NULL;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
111

112
    switch(s->pict_type) {
113
        case  AV_PICTURE_TYPE_I:
114
            return 0; // no prediction from other frames
115
        case  AV_PICTURE_TYPE_B:
Mans Rullgard's avatar
Mans Rullgard committed
116
            next = (struct xvmc_pix_fmt*)s->next_picture.f.data[2];
117
            if (!next)
118
                return -1;
119
            if (next->xvmc_id != AV_XVMC_ID)
120
                return -1;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
121
            render->p_future_surface = next->p_surface;
122
            // no return here, going to set forward prediction
123
        case  AV_PICTURE_TYPE_P:
Mans Rullgard's avatar
Mans Rullgard committed
124
            last = (struct xvmc_pix_fmt*)s->last_picture.f.data[2];
125
            if (!last)
126
                last = render; // predict second field from the first
127
            if (last->xvmc_id != AV_XVMC_ID)
128
                return -1;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
129 130
            render->p_past_surface = last->p_surface;
            return 0;
131
    }
Ivan Kalvachev's avatar
Ivan Kalvachev committed
132 133 134 135

return -1;
}

136
/**
137
 * Complete frame/field rendering by passing any remaining blocks.
138 139
 * Normally ff_draw_horiz_band() is called for each slice, however,
 * some leftover blocks, for example from error_resilience(), may remain.
140 141
 * It should be safe to call the function a few times for the same field.
 */
142
void ff_xvmc_field_end(MpegEncContext *s)
143
{
Mans Rullgard's avatar
Mans Rullgard committed
144
    struct xvmc_pix_fmt *render = (struct xvmc_pix_fmt*)s->current_picture.f.data[2];
145
    assert(render);
Ivan Kalvachev's avatar
Ivan Kalvachev committed
146

147
    if (render->filled_mv_blocks_num > 0)
148
        ff_draw_horiz_band(s, 0, 0);
Ivan Kalvachev's avatar
Ivan Kalvachev committed
149 150
}

151
/**
152 153
 * Synthesize the data needed by XvMC to render one macroblock of data.
 * Fill all relevant fields, if necessary do IDCT.
154
 */
155
void ff_xvmc_decode_mb(MpegEncContext *s)
156
{
157
    XvMCMacroBlock *mv_block;
158
    struct xvmc_pix_fmt *render;
159
    int i, cbp, blocks_per_mb;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
160

161
    const int mb_xy = s->mb_y * s->mb_stride + s->mb_x;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
162 163


164
    if (s->encoding) {
165
        av_log(s->avctx, AV_LOG_ERROR, "XVMC doesn't support encoding!!!\n");
Dominik Mierzejewski's avatar
Dominik Mierzejewski committed
166
        return;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
167 168
    }

169
    // from MPV_decode_mb(), update DC predictors for P macroblocks
Ivan Kalvachev's avatar
Ivan Kalvachev committed
170 171 172 173 174 175
    if (!s->mb_intra) {
        s->last_dc[0] =
        s->last_dc[1] =
        s->last_dc[2] =  128 << s->intra_dc_precision;
    }

176
    // MC doesn't skip blocks
177
    s->mb_skipped = 0;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
178 179


180 181
    // Do I need to export quant when I could not perform postprocessing?
    // Anyway, it doesn't hurt.
Mans Rullgard's avatar
Mans Rullgard committed
182
    s->current_picture.f.qscale_table[mb_xy] = s->qscale;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
183

184
    // start of XVMC-specific code
Mans Rullgard's avatar
Mans Rullgard committed
185
    render = (struct xvmc_pix_fmt*)s->current_picture.f.data[2];
186
    assert(render);
187
    assert(render->xvmc_id == AV_XVMC_ID);
Ivan Kalvachev's avatar
Ivan Kalvachev committed
188
    assert(render->mv_blocks);
189

190
    // take the next free macroblock
191
    mv_block = &render->mv_blocks[render->start_mv_blocks_num +
192
                                  render->filled_mv_blocks_num];
Ivan Kalvachev's avatar
Ivan Kalvachev committed
193

194 195
    mv_block->x        = s->mb_x;
    mv_block->y        = s->mb_y;
196
    mv_block->dct_type = s->interlaced_dct; // XVMC_DCT_TYPE_FRAME/FIELD;
197
    if (s->mb_intra) {
198
        mv_block->macroblock_type = XVMC_MB_TYPE_INTRA; // no MC, all done
199
    } else {
Ivan Kalvachev's avatar
Ivan Kalvachev committed
200 201
        mv_block->macroblock_type = XVMC_MB_TYPE_PATTERN;

202
        if (s->mv_dir & MV_DIR_FORWARD) {
203
            mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_FORWARD;
204
            // PMV[n][dir][xy] = mv[dir][n][xy]
Ivan Kalvachev's avatar
Ivan Kalvachev committed
205 206 207 208 209
            mv_block->PMV[0][0][0] = s->mv[0][0][0];
            mv_block->PMV[0][0][1] = s->mv[0][0][1];
            mv_block->PMV[1][0][0] = s->mv[0][1][0];
            mv_block->PMV[1][0][1] = s->mv[0][1][1];
        }
210
        if (s->mv_dir & MV_DIR_BACKWARD) {
211
            mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_BACKWARD;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
212 213 214 215 216 217
            mv_block->PMV[0][1][0] = s->mv[1][0][0];
            mv_block->PMV[0][1][1] = s->mv[1][0][1];
            mv_block->PMV[1][1][0] = s->mv[1][1][0];
            mv_block->PMV[1][1][1] = s->mv[1][1][1];
        }

218
        switch(s->mv_type) {
Ivan Kalvachev's avatar
Ivan Kalvachev committed
219 220 221 222 223 224 225 226
            case  MV_TYPE_16X16:
                mv_block->motion_type = XVMC_PREDICTION_FRAME;
                break;
            case  MV_TYPE_16X8:
                mv_block->motion_type = XVMC_PREDICTION_16x8;
                break;
            case  MV_TYPE_FIELD:
                mv_block->motion_type = XVMC_PREDICTION_FIELD;
227 228 229 230 231
                if (s->picture_structure == PICT_FRAME) {
                    mv_block->PMV[0][0][1] <<= 1;
                    mv_block->PMV[1][0][1] <<= 1;
                    mv_block->PMV[0][1][1] <<= 1;
                    mv_block->PMV[1][1][1] <<= 1;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
232 233 234 235
                }
                break;
            case  MV_TYPE_DMV:
                mv_block->motion_type = XVMC_PREDICTION_DUAL_PRIME;
236
                if (s->picture_structure == PICT_FRAME) {
Ivan Kalvachev's avatar
Ivan Kalvachev committed
237

238
                    mv_block->PMV[0][0][0] = s->mv[0][0][0];      // top from top
239
                    mv_block->PMV[0][0][1] = s->mv[0][0][1] << 1;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
240

241
                    mv_block->PMV[0][1][0] = s->mv[0][0][0];      // bottom from bottom
242
                    mv_block->PMV[0][1][1] = s->mv[0][0][1] << 1;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
243

244
                    mv_block->PMV[1][0][0] = s->mv[0][2][0];      // dmv00, top from bottom
245
                    mv_block->PMV[1][0][1] = s->mv[0][2][1] << 1; // dmv01
Ivan Kalvachev's avatar
Ivan Kalvachev committed
246

247
                    mv_block->PMV[1][1][0] = s->mv[0][3][0];      // dmv10, bottom from top
248
                    mv_block->PMV[1][1][1] = s->mv[0][3][1] << 1; // dmv11
Ivan Kalvachev's avatar
Ivan Kalvachev committed
249

250
                } else {
251 252
                    mv_block->PMV[0][1][0] = s->mv[0][2][0];      // dmv00
                    mv_block->PMV[0][1][1] = s->mv[0][2][1];      // dmv01
Ivan Kalvachev's avatar
Ivan Kalvachev committed
253 254 255 256 257 258 259 260
                }
                break;
            default:
                assert(0);
        }

        mv_block->motion_vertical_field_select = 0;

261
        // set correct field references
262
        if (s->mv_type == MV_TYPE_FIELD || s->mv_type == MV_TYPE_16X8) {
263
            mv_block->motion_vertical_field_select |= s->field_select[0][0];
264 265 266
            mv_block->motion_vertical_field_select |= s->field_select[1][0] << 1;
            mv_block->motion_vertical_field_select |= s->field_select[0][1] << 2;
            mv_block->motion_vertical_field_select |= s->field_select[1][1] << 3;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
267
        }
268
    } // !intra
269
    // time to handle data blocks
Ivan Kalvachev's avatar
Ivan Kalvachev committed
270
    mv_block->index = render->next_free_data_block_num;
271

Ivan Kalvachev's avatar
Ivan Kalvachev committed
272
    blocks_per_mb = 6;
273
    if (s->chroma_format >= 2) {
Ivan Kalvachev's avatar
Ivan Kalvachev committed
274
        blocks_per_mb = 4 + (1 << s->chroma_format);
Ivan Kalvachev's avatar
Ivan Kalvachev committed
275
    }
276

277
    // calculate cbp
278
    cbp = 0;
279
    for (i = 0; i < blocks_per_mb; i++) {
280
        cbp += cbp;
281
        if (s->block_last_index[i] >= 0)
282 283
            cbp++;
    }
284

285
    if (s->flags & CODEC_FLAG_GRAY) {
286
        if (s->mb_intra) {                                   // intra frames are always full chroma blocks
287
            for (i = 4; i < blocks_per_mb; i++) {
288
                memset(s->pblocks[i], 0, sizeof(*s->pblocks[i]));  // so we need to clear them
289
                if (!render->unsigned_intra)
290
                    *s->pblocks[i][0] = 1 << 10;
291
            }
292
        } else {
293
            cbp &= 0xf << (blocks_per_mb - 4);
294
            blocks_per_mb = 4;                               // luminance blocks only
295
        }
296
    }
Ivan Kalvachev's avatar
Ivan Kalvachev committed
297
    mv_block->coded_block_pattern = cbp;
298
    if (cbp == 0)
Ivan Kalvachev's avatar
Ivan Kalvachev committed
299 300
        mv_block->macroblock_type &= ~XVMC_MB_TYPE_PATTERN;

301 302
    for (i = 0; i < blocks_per_mb; i++) {
        if (s->block_last_index[i] >= 0) {
303
            // I do not have unsigned_intra MOCO to test, hope it is OK.
304
            if (s->mb_intra && (render->idct || !render->unsigned_intra))
305
                *s->pblocks[i][0] -= 1 << 10;
306
            if (!render->idct) {
307
                s->dsp.idct(*s->pblocks[i]);
308 309 310 311
                /* It is unclear if MC hardware requires pixel diff values to be
                 * in the range [-255;255]. TODO: Clipping if such hardware is
                 * ever found. As of now it would only be an unnecessary
                 * slowdown. */
Ivan Kalvachev's avatar
Ivan Kalvachev committed
312
            }
313
            // copy blocks only if the codec doesn't support pblocks reordering
314
            if (s->avctx->xvmc_acceleration == 1) {
Ivan Kalvachev's avatar
Ivan Kalvachev committed
315
                memcpy(&render->data_blocks[render->next_free_data_block_num*64],
316
                       s->pblocks[i], sizeof(*s->pblocks[i]));
317 318
            }
            render->next_free_data_block_num++;
Ivan Kalvachev's avatar
Ivan Kalvachev committed
319 320 321 322
        }
    }
    render->filled_mv_blocks_num++;

323 324 325 326 327
    assert(render->filled_mv_blocks_num     <= render->allocated_mv_blocks);
    assert(render->next_free_data_block_num <= render->allocated_data_blocks);
    /* The above conditions should not be able to fail as long as this function
     * is used and the following 'if ()' automatically calls a callback to free
     * blocks. */
Ivan Kalvachev's avatar
Ivan Kalvachev committed
328 329


330
    if (render->filled_mv_blocks_num == render->allocated_mv_blocks)
331
        ff_draw_horiz_band(s, 0, 0);
Ivan Kalvachev's avatar
Ivan Kalvachev committed
332
}