OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:typeDCACStore
(Results
1 - 8
of
8
) sorted by null
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4lib_int.h
194
typedef int16
typeDCACStore
[4][8];
218
typeDCACStore
*predDCAC_row;
219
typeDCACStore
*predDCAC_col;
dcac_prediction.cpp
52
typeDCACStore
*DCAC_row = video->predDCAC_row + x_pos;
53
typeDCACStore
*DCAC_col = video->predDCAC_col;
81
oscl_memset(DCAC_col, 0, sizeof(
typeDCACStore
));
85
oscl_memset(DCAC_row, 0, sizeof(
typeDCACStore
));
223
typeDCACStore
*DCAC_row = video->predDCAC_row + x_pos;
224
typeDCACStore
*DCAC_col = video->predDCAC_col;
vlc_dequant.cpp
62
typeDCACStore
*DCAC_row = video->predDCAC_row + x_pos;
63
typeDCACStore
*DCAC_col = video->predDCAC_col;
513
typeDCACStore
*DCAC_row = video->predDCAC_row + x_pos;
514
typeDCACStore
*DCAC_col = video->predDCAC_col;
815
typeDCACStore
*DCAC_row = video->predDCAC_row + x_pos;
816
typeDCACStore
*DCAC_col = video->predDCAC_col;
[
all
...]
pvdec_api.cpp
38
extern
typeDCACStore
IMEM_predDCAC_col[QCIF_MB_ROWS+1];
374
video->predDCAC_col = (
typeDCACStore
*)(IMEM_predDCAC_col);
376
video->memoryUsage += ((nMBPerRow + 1) * sizeof(
typeDCACStore
));
410
video->predDCAC_col = (
typeDCACStore
*) oscl_malloc((nMBPerRow + 1) * sizeof(
typeDCACStore
));
412
video->memoryUsage += ((nMBPerRow + 1) * sizeof(
typeDCACStore
));
[
all
...]
combined_decode.cpp
352
typeDCACStore
*DCAC_row = video->predDCAC_row + x_pos;
353
typeDCACStore
*DCAC_col = video->predDCAC_col;
370
//oscl_memset(DCAC_row, 0, sizeof(
typeDCACStore
)); /* SKIPPED_ACDC */
371
//oscl_memset(DCAC_col, 0, sizeof(
typeDCACStore
));
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4lib_int.h
151
typedef Short
typeDCACStore
[4][8];
382
typeDCACStore
*predDCAC_row;
383
typeDCACStore
*predDCAC_col;
mp4enc_api.cpp
684
video->predDCAC_col = (
typeDCACStore
*) M4VENC_MALLOC(((max_width >> 4) + 1) * sizeof(
typeDCACStore
));
[
all
...]
vlc_encode.cpp
[
all
...]
Completed in 139 milliseconds