Mercurial > libavcodec.hg
annotate mpegvideo_xvmc.c @ 8876:ae637f4c4e55 libavcodec
whitespace cosmetics: Align some comments.
| author | diego |
|---|---|
| date | Sat, 14 Feb 2009 19:54:59 +0000 |
| parents | 266bd7d64985 |
| children | 4044a647cb2a |
| rev | line source |
|---|---|
| 8831 | 1 /* |
| 2 * XVideo Motion Compensation | |
| 3 * Copyright (c) 2003 Ivan Kalvachev | |
| 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 #include <limits.h> | |
| 23 | |
| 24 #include "avcodec.h" | |
| 25 #include "dsputil.h" | |
| 26 #include "mpegvideo.h" | |
| 27 | |
| 28 #undef NDEBUG | |
| 29 #include <assert.h> | |
| 30 | |
| 31 #include "xvmc.h" | |
| 32 | |
| 33 //set s->block | |
| 8855 | 34 void ff_xvmc_init_block(MpegEncContext *s) |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
35 { |
| 8871 | 36 struct xvmc_render_state *render; |
| 8831 | 37 render = (struct xvmc_render_state*)s->current_picture.data[2]; |
|
8844
9ea7195b2ed4
Replace all (x == NULL) or (x != NULL) in assert and if conditions by !x and x.
diego
parents:
8842
diff
changeset
|
38 assert(render); |
| 8860 | 39 if (!render || render->magic != AV_XVMC_RENDER_MAGIC) { |
| 8831 | 40 assert(0); |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
41 return; // make sure that this is a render packet |
| 8831 | 42 } |
| 8860 | 43 s->block = (DCTELEM *)(render->data_blocks + render->next_free_data_block_num * 64); |
| 8831 | 44 } |
| 45 | |
| 8855 | 46 void ff_xvmc_pack_pblocks(MpegEncContext *s, int cbp) |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
47 { |
| 8871 | 48 int i, j; |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
49 const int mb_block_count = 4 + (1 << s->chroma_format); |
| 8831 | 50 |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
51 j = 0; |
|
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
52 cbp <<= 12-mb_block_count; |
|
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
53 for (i = 0; i < mb_block_count; i++) { |
|
8861
da23b389e856
cosmetics: Consistently format all if/else statements in K&R style
diego
parents:
8860
diff
changeset
|
54 if (cbp & (1 << 11)) |
| 8856 | 55 s->pblocks[i] = (short *)(&s->block[j++]); |
|
8861
da23b389e856
cosmetics: Consistently format all if/else statements in K&R style
diego
parents:
8860
diff
changeset
|
56 else |
| 8834 | 57 s->pblocks[i] = NULL; |
| 8831 | 58 cbp+=cbp; |
| 59 } | |
| 60 } | |
| 61 | |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
62 // These functions should be called on every new field and/or frame. |
|
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
63 // They should be safe if they are called a few times for the same field! |
| 8855 | 64 int ff_xvmc_field_start(MpegEncContext*s, AVCodecContext *avctx) |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
65 { |
| 8871 | 66 struct xvmc_render_state *render, *last, *next; |
| 8831 | 67 |
|
8844
9ea7195b2ed4
Replace all (x == NULL) or (x != NULL) in assert and if conditions by !x and x.
diego
parents:
8842
diff
changeset
|
68 assert(avctx); |
| 8831 | 69 |
| 70 render = (struct xvmc_render_state*)s->current_picture.data[2]; | |
|
8844
9ea7195b2ed4
Replace all (x == NULL) or (x != NULL) in assert and if conditions by !x and x.
diego
parents:
8842
diff
changeset
|
71 assert(render); |
| 8860 | 72 if (!render || render->magic != AV_XVMC_RENDER_MAGIC) |
|
8870
c5112df7f8b8
cosmetics: grammar/spelling/wording fixes in comments
diego
parents:
8869
diff
changeset
|
73 return -1; // make sure that this is a render packet |
| 8831 | 74 |
| 75 render->picture_structure = s->picture_structure; | |
| 8860 | 76 render->flags = s->first_field ? 0 : XVMC_SECOND_FIELD; |
| 8831 | 77 |
|
8836
4c175e9d492e
whitespace cosmetics: another round of formatting consistency fixes
diego
parents:
8835
diff
changeset
|
78 assert(render->filled_mv_blocks_num == 0); |
| 8831 | 79 |
| 80 render->p_future_surface = NULL; | |
| 8837 | 81 render->p_past_surface = NULL; |
| 8831 | 82 |
| 8871 | 83 switch(s->pict_type) { |
| 8831 | 84 case FF_I_TYPE: |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
85 return 0; // no prediction from other frames |
| 8831 | 86 case FF_B_TYPE: |
| 87 next = (struct xvmc_render_state*)s->next_picture.data[2]; | |
|
8844
9ea7195b2ed4
Replace all (x == NULL) or (x != NULL) in assert and if conditions by !x and x.
diego
parents:
8842
diff
changeset
|
88 assert(next); |
|
9ea7195b2ed4
Replace all (x == NULL) or (x != NULL) in assert and if conditions by !x and x.
diego
parents:
8842
diff
changeset
|
89 if (!next) |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
90 return -1; |
|
8845
aee8c48ff4b0
Give public #defines that are used by MPlayer an AV_ prefix.
diego
parents:
8844
diff
changeset
|
91 if (next->magic != AV_XVMC_RENDER_MAGIC) |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
92 return -1; |
| 8831 | 93 render->p_future_surface = next->p_surface; |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
94 // no return here, going to set forward prediction |
| 8831 | 95 case FF_P_TYPE: |
| 96 last = (struct xvmc_render_state*)s->last_picture.data[2]; | |
| 8872 | 97 if (!last) |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
98 last = render; // predict second field from the first |
|
8845
aee8c48ff4b0
Give public #defines that are used by MPlayer an AV_ prefix.
diego
parents:
8844
diff
changeset
|
99 if (last->magic != AV_XVMC_RENDER_MAGIC) |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
100 return -1; |
| 8831 | 101 render->p_past_surface = last->p_surface; |
| 102 return 0; | |
| 103 } | |
| 104 | |
| 105 return -1; | |
| 106 } | |
| 107 | |
| 8855 | 108 void ff_xvmc_field_end(MpegEncContext *s) |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
109 { |
| 8871 | 110 struct xvmc_render_state *render; |
| 8831 | 111 render = (struct xvmc_render_state*)s->current_picture.data[2]; |
|
8844
9ea7195b2ed4
Replace all (x == NULL) or (x != NULL) in assert and if conditions by !x and x.
diego
parents:
8842
diff
changeset
|
112 assert(render); |
| 8831 | 113 |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
114 if (render->filled_mv_blocks_num > 0) |
| 8831 | 115 ff_draw_horiz_band(s,0,0); |
| 116 } | |
| 117 | |
| 8855 | 118 void ff_xvmc_decode_mb(MpegEncContext *s) |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
119 { |
| 8871 | 120 XvMCMacroBlock *mv_block; |
| 121 struct xvmc_render_state *render; | |
| 122 int i, cbp, blocks_per_mb; | |
| 8831 | 123 |
| 8834 | 124 const int mb_xy = s->mb_y * s->mb_stride + s->mb_x; |
| 8831 | 125 |
| 126 | |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
127 if (s->encoding) { |
| 8831 | 128 av_log(s->avctx, AV_LOG_ERROR, "XVMC doesn't support encoding!!!\n"); |
| 129 return; | |
| 130 } | |
| 131 | |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
132 // from MPV_decode_mb(), update DC predictors for P macroblocks |
| 8831 | 133 if (!s->mb_intra) { |
| 134 s->last_dc[0] = | |
| 135 s->last_dc[1] = | |
| 136 s->last_dc[2] = 128 << s->intra_dc_precision; | |
| 137 } | |
| 138 | |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
139 // MC doesn't skip blocks |
| 8831 | 140 s->mb_skipped = 0; |
| 141 | |
| 142 | |
|
8866
09d0ff5cdc81
whitespace cosmetics: Correctly indent all comments.
diego
parents:
8865
diff
changeset
|
143 // Do I need to export quant when I could not perform postprocessing? |
|
09d0ff5cdc81
whitespace cosmetics: Correctly indent all comments.
diego
parents:
8865
diff
changeset
|
144 // Anyway, it doesn't hurt. |
| 8831 | 145 s->current_picture.qscale_table[mb_xy] = s->qscale; |
| 146 | |
|
8870
c5112df7f8b8
cosmetics: grammar/spelling/wording fixes in comments
diego
parents:
8869
diff
changeset
|
147 // start of XVMC-specific code |
| 8831 | 148 render = (struct xvmc_render_state*)s->current_picture.data[2]; |
|
8844
9ea7195b2ed4
Replace all (x == NULL) or (x != NULL) in assert and if conditions by !x and x.
diego
parents:
8842
diff
changeset
|
149 assert(render); |
| 8871 | 150 assert(render->magic == AV_XVMC_RENDER_MAGIC); |
| 8831 | 151 assert(render->mv_blocks); |
| 152 | |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
153 // take the next free macroblock |
| 8831 | 154 mv_block = &render->mv_blocks[render->start_mv_blocks_num + |
| 8834 | 155 render->filled_mv_blocks_num ]; |
| 8831 | 156 |
| 8837 | 157 mv_block->x = s->mb_x; |
| 158 mv_block->y = s->mb_y; | |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
159 mv_block->dct_type = s->interlaced_dct; // XVMC_DCT_TYPE_FRAME/FIELD; |
|
8861
da23b389e856
cosmetics: Consistently format all if/else statements in K&R style
diego
parents:
8860
diff
changeset
|
160 if (s->mb_intra) { |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
161 mv_block->macroblock_type = XVMC_MB_TYPE_INTRA; // no MC, all done |
|
8861
da23b389e856
cosmetics: Consistently format all if/else statements in K&R style
diego
parents:
8860
diff
changeset
|
162 } else { |
| 8831 | 163 mv_block->macroblock_type = XVMC_MB_TYPE_PATTERN; |
| 164 | |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
165 if (s->mv_dir & MV_DIR_FORWARD) { |
|
8836
4c175e9d492e
whitespace cosmetics: another round of formatting consistency fixes
diego
parents:
8835
diff
changeset
|
166 mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_FORWARD; |
|
8873
02c59b74ba71
Make one comment slightly clearer and more readable.
diego
parents:
8872
diff
changeset
|
167 // PMV[n][dir][xy] = mv[dir][n][xy] |
| 8831 | 168 mv_block->PMV[0][0][0] = s->mv[0][0][0]; |
| 169 mv_block->PMV[0][0][1] = s->mv[0][0][1]; | |
| 170 mv_block->PMV[1][0][0] = s->mv[0][1][0]; | |
| 171 mv_block->PMV[1][0][1] = s->mv[0][1][1]; | |
| 172 } | |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
173 if (s->mv_dir & MV_DIR_BACKWARD) { |
|
8836
4c175e9d492e
whitespace cosmetics: another round of formatting consistency fixes
diego
parents:
8835
diff
changeset
|
174 mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_BACKWARD; |
| 8831 | 175 mv_block->PMV[0][1][0] = s->mv[1][0][0]; |
| 176 mv_block->PMV[0][1][1] = s->mv[1][0][1]; | |
| 177 mv_block->PMV[1][1][0] = s->mv[1][1][0]; | |
| 178 mv_block->PMV[1][1][1] = s->mv[1][1][1]; | |
| 179 } | |
| 180 | |
| 181 switch(s->mv_type){ | |
| 182 case MV_TYPE_16X16: | |
| 183 mv_block->motion_type = XVMC_PREDICTION_FRAME; | |
| 184 break; | |
| 185 case MV_TYPE_16X8: | |
| 186 mv_block->motion_type = XVMC_PREDICTION_16x8; | |
| 187 break; | |
| 188 case MV_TYPE_FIELD: | |
| 189 mv_block->motion_type = XVMC_PREDICTION_FIELD; | |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
190 if (s->picture_structure == PICT_FRAME) { |
|
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
191 mv_block->PMV[0][0][1] <<= 1; |
|
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
192 mv_block->PMV[1][0][1] <<= 1; |
|
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
193 mv_block->PMV[0][1][1] <<= 1; |
|
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
194 mv_block->PMV[1][1][1] <<= 1; |
| 8831 | 195 } |
| 196 break; | |
| 197 case MV_TYPE_DMV: | |
| 198 mv_block->motion_type = XVMC_PREDICTION_DUAL_PRIME; | |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
199 if (s->picture_structure == PICT_FRAME) { |
| 8831 | 200 |
| 8876 | 201 mv_block->PMV[0][0][0] = s->mv[0][0][0]; // top from top |
|
8875
266bd7d64985
whitespace cosmetics: Put some spaces around operators for better readability.
diego
parents:
8874
diff
changeset
|
202 mv_block->PMV[0][0][1] = s->mv[0][0][1] << 1; |
| 8831 | 203 |
| 8876 | 204 mv_block->PMV[0][1][0] = s->mv[0][0][0]; // bottom from bottom |
|
8875
266bd7d64985
whitespace cosmetics: Put some spaces around operators for better readability.
diego
parents:
8874
diff
changeset
|
205 mv_block->PMV[0][1][1] = s->mv[0][0][1] << 1; |
| 8831 | 206 |
| 8876 | 207 mv_block->PMV[1][0][0] = s->mv[0][2][0]; // dmv00, top from bottom |
|
8875
266bd7d64985
whitespace cosmetics: Put some spaces around operators for better readability.
diego
parents:
8874
diff
changeset
|
208 mv_block->PMV[1][0][1] = s->mv[0][2][1] << 1; // dmv01 |
| 8831 | 209 |
| 8876 | 210 mv_block->PMV[1][1][0] = s->mv[0][3][0]; // dmv10, bottom from top |
|
8875
266bd7d64985
whitespace cosmetics: Put some spaces around operators for better readability.
diego
parents:
8874
diff
changeset
|
211 mv_block->PMV[1][1][1] = s->mv[0][3][1] << 1; // dmv11 |
| 8831 | 212 |
|
8861
da23b389e856
cosmetics: Consistently format all if/else statements in K&R style
diego
parents:
8860
diff
changeset
|
213 } else { |
| 8876 | 214 mv_block->PMV[0][1][0] = s->mv[0][2][0]; // dmv00 |
| 215 mv_block->PMV[0][1][1] = s->mv[0][2][1]; // dmv01 | |
| 8831 | 216 } |
| 217 break; | |
| 218 default: | |
| 219 assert(0); | |
| 220 } | |
| 221 | |
| 222 mv_block->motion_vertical_field_select = 0; | |
| 223 | |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
224 // set correct field references |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
225 if (s->mv_type == MV_TYPE_FIELD || s->mv_type == MV_TYPE_16X8) { |
| 8862 | 226 mv_block->motion_vertical_field_select |= s->field_select[0][0]; |
| 8871 | 227 mv_block->motion_vertical_field_select |= s->field_select[1][0] << 1; |
| 228 mv_block->motion_vertical_field_select |= s->field_select[0][1] << 2; | |
| 229 mv_block->motion_vertical_field_select |= s->field_select[1][1] << 3; | |
| 8831 | 230 } |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
231 } // !intra |
|
8870
c5112df7f8b8
cosmetics: grammar/spelling/wording fixes in comments
diego
parents:
8869
diff
changeset
|
232 // time to handle data blocks |
| 8831 | 233 mv_block->index = render->next_free_data_block_num; |
| 234 | |
| 235 blocks_per_mb = 6; | |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
236 if (s->chroma_format >= 2) { |
| 8856 | 237 blocks_per_mb = 4 + (1 << s->chroma_format); |
| 8831 | 238 } |
| 239 | |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
240 // calculate cbp |
| 8831 | 241 cbp = 0; |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
242 for (i = 0; i < blocks_per_mb; i++) { |
|
8836
4c175e9d492e
whitespace cosmetics: another round of formatting consistency fixes
diego
parents:
8835
diff
changeset
|
243 cbp += cbp; |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
244 if (s->block_last_index[i] >= 0) |
| 8831 | 245 cbp++; |
| 246 } | |
| 247 | |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
248 if (s->flags & CODEC_FLAG_GRAY) { |
| 8876 | 249 if (s->mb_intra) { // intra frames are always full chroma blocks |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
250 for (i = 4; i < blocks_per_mb; i++) { |
| 8871 | 251 memset(s->pblocks[i], 0, sizeof(short)*8*8); // so we need to clear them |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
252 if (!render->unsigned_intra) |
|
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
253 s->pblocks[i][0] = 1 << 10; |
| 8831 | 254 } |
|
8861
da23b389e856
cosmetics: Consistently format all if/else statements in K&R style
diego
parents:
8860
diff
changeset
|
255 } else { |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
256 cbp &= 0xf << (blocks_per_mb - 4); |
| 8876 | 257 blocks_per_mb = 4; // luminance blocks only |
| 8831 | 258 } |
| 259 } | |
| 260 mv_block->coded_block_pattern = cbp; | |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
261 if (cbp == 0) |
| 8831 | 262 mv_block->macroblock_type &= ~XVMC_MB_TYPE_PATTERN; |
| 263 | |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
264 for (i = 0; i < blocks_per_mb; i++) { |
|
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
265 if (s->block_last_index[i] >= 0) { |
| 8831 | 266 // I do not have unsigned_intra MOCO to test, hope it is OK. |
|
8868
2534e44a9472
Restore one set of parentheses to avoid the warning:
diego
parents:
8867
diff
changeset
|
267 if (s->mb_intra && (render->idct || (!render->idct && !render->unsigned_intra))) |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
268 s->pblocks[i][0] -= 1 << 10; |
|
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
269 if (!render->idct) { |
| 8831 | 270 s->dsp.idct(s->pblocks[i]); |
|
8870
c5112df7f8b8
cosmetics: grammar/spelling/wording fixes in comments
diego
parents:
8869
diff
changeset
|
271 /* It is unclear if MC hardware requires pixel diff values to be |
|
c5112df7f8b8
cosmetics: grammar/spelling/wording fixes in comments
diego
parents:
8869
diff
changeset
|
272 * in the range [-255;255]. TODO: Clipping if such hardware is |
|
c5112df7f8b8
cosmetics: grammar/spelling/wording fixes in comments
diego
parents:
8869
diff
changeset
|
273 * ever found. As of now it would only be an unnecessary |
|
c5112df7f8b8
cosmetics: grammar/spelling/wording fixes in comments
diego
parents:
8869
diff
changeset
|
274 * slowdown. */ |
| 8831 | 275 } |
|
8867
0694627caaea
whitespace cosmetics: consistently format all comments
diego
parents:
8866
diff
changeset
|
276 // copy blocks only if the codec doesn't support pblocks reordering |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
277 if (s->avctx->xvmc_acceleration == 1) { |
| 8856 | 278 memcpy(&render->data_blocks[render->next_free_data_block_num*64], |
| 8834 | 279 s->pblocks[i],sizeof(short)*8*8); |
| 8831 | 280 } |
| 281 render->next_free_data_block_num++; | |
| 282 } | |
| 283 } | |
| 284 render->filled_mv_blocks_num++; | |
| 285 | |
| 8837 | 286 assert(render->filled_mv_blocks_num <= render->total_number_of_mv_blocks); |
| 8831 | 287 assert(render->next_free_data_block_num <= render->total_number_of_data_blocks); |
| 288 | |
| 289 | |
|
8835
8c11ebbca9b3
whitespace cosmetics: consistent (more or less) K&R style
diego
parents:
8834
diff
changeset
|
290 if (render->filled_mv_blocks_num >= render->total_number_of_mv_blocks) |
| 8871 | 291 ff_draw_horiz_band(s, 0, 0); |
| 8831 | 292 } |
