Lines Matching refs:fDecoder
17 : fDecoder(NULL), in BMediaDecoder()
26 : fDecoder(NULL), in BMediaDecoder()
34 : fDecoder(NULL), in BMediaDecoder()
44 gPluginManager.DestroyDecoder(fDecoder); in ~BMediaDecoder()
60 gPluginManager.DestroyDecoder(fDecoder); in SetTo()
61 fDecoder = NULL; in SetTo()
63 status_t err = gPluginManager.CreateDecoder(&fDecoder, *in_format); in SetTo()
79 gPluginManager.DestroyDecoder(fDecoder); in SetTo()
80 fDecoder = NULL; in SetTo()
89 gPluginManager.DestroyDecoder(fDecoder); in SetTo()
90 fDecoder = NULL; in SetTo()
92 status_t err = gPluginManager.CreateDecoder(&fDecoder, *mci); in SetTo()
104 gPluginManager.DestroyDecoder(fDecoder); in SetTo()
105 fDecoder = NULL; in SetTo()
124 if (!fDecoder) in SetInputFormat()
128 return fDecoder->Setup(&format, in_info, in_size); in SetInputFormat()
141 if (!fDecoder) in SetOutputFormat()
144 return fDecoder->NegotiateOutputFormat(output_format); in SetOutputFormat()
167 if (!fDecoder) in Decode()
170 return fDecoder->Decode(out_buffer, out_frameCount, out_mh, info); in Decode()
177 if (!fDecoder) in GetDecoderInfo()
180 return gPluginManager.GetDecoderInfo(fDecoder, out_info); in GetDecoderInfo()
204 BMediaDecoder * fDecoder; in AttachToDecoder() member in BMediaDecoder::AttachToDecoder::MediaDecoderChunkProvider
207 fDecoder = decoder; in AttachToDecoder()
211 return fDecoder->GetNextChunk(chunkBuffer, chunkSize, mediaHeader); in AttachToDecoder()
218 fDecoder->SetChunkProvider(provider); in AttachToDecoder()