Home
last modified time | relevance | path

Searched refs:sliceType (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_slice_header.h54 #define IS_P_SLICE(sliceType) (((sliceType) == P_SLICE) || \ argument
55 ((sliceType) == P_SLICE + 5))
58 #define IS_I_SLICE(sliceType) (((sliceType) == I_SLICE) || \ argument
59 ((sliceType) == I_SLICE + 5))
111 u32 sliceType; member
Dh264bsd_conceal.c56 u32 sliceType, u8 *data);
123 u32 h264bsdConceal(storage_t *pStorage, image_t *currImage, u32 sliceType) in h264bsdConceal() argument
139 DEBUG(("Concealing %s slice\n", IS_I_SLICE(sliceType) ? in h264bsdConceal()
146 if (IS_P_SLICE(sliceType) || (pStorage->intraConcealmentFlag != 0)) in h264bsdConceal()
174 if ( (IS_I_SLICE(sliceType) && (pStorage->intraConcealmentFlag == 0)) || in h264bsdConceal()
194 ConcealMb(mb+j, currImage, row, j, sliceType, refData); in h264bsdConceal()
202 ConcealMb(mb+j, currImage, row, j, sliceType, refData); in h264bsdConceal()
216 ConcealMb(mb, currImage, i, j, sliceType, refData); in h264bsdConceal()
233 ConcealMb(mb+j, currImage, i, j, sliceType, refData); in h264bsdConceal()
254 u32 sliceType, u8 *refData) in ConcealMb() argument
[all …]
Dh264bsd_slice_data.c142 if (!IS_I_SLICE(pSliceHeader->sliceType)) in h264bsdDecodeSliceData()
175 pStorage->mb + currMbAddr, pSliceHeader->sliceType, in h264bsdDecodeSliceData()
206 if (IS_I_SLICE(pSliceHeader->sliceType)) in h264bsdDecodeSliceData()
Dh264bsd_conceal.h51 u32 h264bsdConceal(storage_t *pStorage, image_t *currImage, u32 sliceType);
Dh264bsd_slice_header.c134 pSliceHeader->sliceType = value; in h264bsdDecodeSliceHeader()
137 if ( !IS_I_SLICE(pSliceHeader->sliceType) && in h264bsdDecodeSliceHeader()
138 ( !IS_P_SLICE(pSliceHeader->sliceType) || in h264bsdDecodeSliceHeader()
260 if (IS_P_SLICE(pSliceHeader->sliceType)) in h264bsdDecodeSliceHeader()
293 if (IS_P_SLICE(pSliceHeader->sliceType)) in h264bsdDecodeSliceHeader()
Dh264bsd_macroblock_layer.h191 macroblockLayer_t *pMbLayer, mbStorage_t *pMb, u32 sliceType,
Dh264bsd_macroblock_layer.c134 macroblockLayer_t *pMbLayer, mbStorage_t *pMb, u32 sliceType, in h264bsdDecodeMacroblockLayer() argument
157 if (IS_I_SLICE(sliceType)) in h264bsdDecodeMacroblockLayer()
Dh264bsd_decoder.c250 pStorage->sliceHeader->sliceType); in h264bsdDecode()