Lines Matching refs:hInput
193 HANDLE_TRANSPORTDEC hInput; in transportDec_Open() local
195 hInput = GetRam_TransportDecoder(0); in transportDec_Open()
196 if (hInput == NULL) { in transportDec_Open()
201 hInput->transportFmt = transportFmt; in transportDec_Open()
209 hInput->parser.adts.decoderCanDoMpeg4 = 1; in transportDec_Open()
211 hInput->parser.adts.decoderCanDoMpeg4 = 0; in transportDec_Open()
212 adtsRead_CrcInit(&hInput->parser.adts); in transportDec_Open()
213 hInput->parser.adts.BufferFullnesStartFlag = 1; in transportDec_Open()
214 hInput->numberOfRawDataBlocks = 0; in transportDec_Open()
218 drmRead_CrcInit(&hInput->parser.drm); in transportDec_Open()
223 hInput->parser.latm.usacExplicitCfgChanged = 0; in transportDec_Open()
224 hInput->parser.latm.applyAsc = 1; in transportDec_Open()
227 hInput->parser.latm.usacExplicitCfgChanged = 0; in transportDec_Open()
228 hInput->parser.latm.applyAsc = 1; in transportDec_Open()
234 FreeRam_TransportDecoder(&hInput); in transportDec_Open()
235 hInput = NULL; in transportDec_Open()
239 if (hInput != NULL) { in transportDec_Open()
242 hInput->bsBuffer = GetRam_TransportDecoderBuffer(0); in transportDec_Open()
243 if (hInput->bsBuffer == NULL) { in transportDec_Open()
244 transportDec_Close(&hInput); in transportDec_Open()
248 transportDec_Close(&hInput); in transportDec_Open()
252 FDKinitBitStream(&hInput->bitStream[i], hInput->bsBuffer, (8192 * 4), 0, in transportDec_Open()
256 hInput->burstPeriod = 0; in transportDec_Open()
259 return hInput; in transportDec_Open()