Lines Matching refs:index
269 * will report the available input buffer and the corresponding index value. Once the buffer with the specified index
271 * callback is received again reporting that the buffer with the same index is available. In addition, for some
276 * @param index Enter the index value corresponding to the Buffer
282 * Buffer index should be given by {@link OH_AVCodecOnNeedInputData}.
290 OH_AVErrCode OH_VideoDecoder_PushInputData(OH_AVCodec *codec, uint32_t index, OH_AVCodecBufferAttr attr);
295 * calling this interface only returns the output buffer corresponding to the specified index to the decoder.
298 * @param index The index value corresponding to the output Buffer
303 * Buffer index should be given by {@link OH_AVCodecOnNewOutputData}.
311 OH_AVErrCode OH_VideoDecoder_RenderOutputData(OH_AVCodec *codec, uint32_t index);
317 * @param index The index value corresponding to the output Buffer
322 * Buffer index should be given by {@link OH_AVCodecOnNewOutputData}.
330 OH_AVErrCode OH_VideoDecoder_FreeOutputData(OH_AVCodec *codec, uint32_t index);
334 * callback will report the available input buffer and the corresponding index value. Once the buffer with the
335 * specified index is submitted to the video decoder, the buffer cannot be accessed again until the
336 * {@link OH_AVCodecOnNeedInputBuffer} callback is received again reporting that the buffer with the same index is
341 * @param index The index of the input buffer.
346 * Buffer index should be given by {@link OH_AVCodecOnNeedInputBuffer}.
354 OH_AVErrCode OH_VideoDecoder_PushInputBuffer(OH_AVCodec *codec, uint32_t index);
359 * calling this interface only returns the output buffer corresponding to the specified index to the decoder.
362 * @param index The index value corresponding to the output Buffer
367 * Buffer index should be given by {@link OH_AVCodecOnNewOutputBuffer}.
373 OH_AVErrCode OH_VideoDecoder_RenderOutputBuffer(OH_AVCodec *codec, uint32_t index);
378 * before, calling this interface only returns the output buffer corresponding to the specified index to the decoder.
392 * @param index The index value corresponding to the output buffer, should be given by {@link
405 OH_AVErrCode OH_VideoDecoder_RenderOutputBufferAtTime(OH_AVCodec *codec, uint32_t index, int64_t renderTimestampNs);
411 * @param index The index value corresponding to the output Buffer
416 * Buffer index should be given by {@link OH_AVCodecOnNewOutputBuffer}.
422 OH_AVErrCode OH_VideoDecoder_FreeOutputBuffer(OH_AVCodec *codec, uint32_t index);