OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:macroblocks
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
test_blocks.c
46
XvMCMacroBlockArray
macroblocks
= {0};
local
90
assert(XvMCCreateMacroBlocks(display, NULL, 1, &
macroblocks
) == XvMCBadContext);
91
/* Test 0
macroblocks
*/
92
assert(XvMCCreateMacroBlocks(display, &context, 0, &
macroblocks
) == BadValue);
94
assert(XvMCCreateMacroBlocks(display, &context, min_required_macroblocks, &
macroblocks
) == Success);
96
assert(
macroblocks
.context_id == context.context_id);
98
assert(
macroblocks
.macro_blocks != NULL);
100
assert(XvMCDestroyMacroBlocks(display, &
macroblocks
) == Success);
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
test_blocks.c
46
XvMCMacroBlockArray
macroblocks
= {0};
local
90
assert(XvMCCreateMacroBlocks(display, NULL, 1, &
macroblocks
) == XvMCBadContext);
91
/* Test 0
macroblocks
*/
92
assert(XvMCCreateMacroBlocks(display, &context, 0, &
macroblocks
) == BadValue);
94
assert(XvMCCreateMacroBlocks(display, &context, min_required_macroblocks, &
macroblocks
) == Success);
96
assert(
macroblocks
.context_id == context.context_id);
98
assert(
macroblocks
.macro_blocks != NULL);
100
assert(XvMCDestroyMacroBlocks(display, &
macroblocks
) == Success);
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsyuv.c
37
#define MAX_MACROBLOCKS 1024 /* 2^10
macroblocks
at once */
50
int
macroblocks
;
member in struct:private_yuvhwdata
146
hwdata->
macroblocks
= (width/16) * (height/16);
184
hwdata->dma_len = hwdata->
macroblocks
* (16 * 16 + 8 * 8 + 8 * 8) +
186
hwdata->
macroblocks
* (16 * sizeof(long long)) +
198
hwdata->
macroblocks
* (16 * 16 + 8 * 8 + 8 * 8);
202
hwdata->plist.num = hwdata->
macroblocks
* 4 + 1;
395
packet.len = hwdata->
macroblocks
* (16 * 16 + 8 * 8 + 8 * 8);
402
cmd = (7 << 28) + hwdata->
macroblocks
;
Completed in 180 milliseconds