HomeSort by relevance Sort by last modified time
    Searched refs:decodedFrame (Results 1 - 3 of 3) sorted by null

  /external/opencv3/modules/cudacodec/src/
video_reader.cpp 56 void videoDecPostProcessFrame(const GpuMat& decodedFrame, OutputArray _outFrame, int width, int height);
179 GpuMat decodedFrame = videoDecoder_->mapFrame(frameInfo.first.picture_index, frameInfo.second);
183 videoDecPostProcessFrame(decodedFrame, frame, videoDecoder_->targetWidth(), videoDecoder_->targetHeight());
187 videoDecoder_->unmapFrame(decodedFrame);
  /external/opencv3/modules/cudacodec/src/cuda/
nv12_to_rgb.cu 63 void videoDecPostProcessFrame(const GpuMat& decodedFrame, OutputArray _outFrame, int width, int height);
189 void videoDecPostProcessFrame(const GpuMat& decodedFrame, OutputArray _outFrame, int width, int height)
199 NV12_to_RGB<<<grid, block>>>(decodedFrame.ptr<uchar>(), decodedFrame.step,
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
post_filter.cpp 46 uint8 *decodedFrame = video->videoDecControls->outputFrame;
54 oscl_memcpy(output, decodedFrame, size);
55 oscl_memcpy(output + size, decodedFrame + size, (size >> 2));
56 oscl_memcpy(output + size + (size >> 2), decodedFrame + size + (size >> 2), (size >> 2));

Completed in 325 milliseconds