/external/webrtc/webrtc/modules/video_coding/codecs/i420/ |
D | i420.cc | 74 int I420Encoder::Encode(const VideoFrame& inputImage, in Encode() argument 85 _encodedImage._timeStamp = inputImage.timestamp(); in Encode() 86 _encodedImage._encodedHeight = inputImage.height(); in Encode() 87 _encodedImage._encodedWidth = inputImage.width(); in Encode() 89 int width = inputImage.width(); in Encode() 93 int height = inputImage.height(); in Encode() 99 CalcBufferSize(kI420, inputImage.width(), inputImage.height()) + in Encode() 114 ExtractBuffer(inputImage, req_length - kI420HeaderSize, buffer); in Encode() 167 int I420Decoder::Decode(const EncodedImage& inputImage, in Decode() argument 172 if (inputImage._buffer == NULL) { in Decode() [all …]
|
/external/webrtc/talk/app/webrtc/java/jni/ |
D | androidmediadecoder_jni.cc | 81 const EncodedImage& inputImage, bool missingFrames, 106 int32_t DecodeOnCodecThread(const EncodedImage& inputImage); 455 const EncodedImage& inputImage, in Decode() argument 468 if (inputImage._buffer == NULL && inputImage._length > 0) { in Decode() 478 if ((inputImage._encodedWidth * inputImage._encodedHeight > 0) && in Decode() 479 (inputImage._encodedWidth != codec_.width || in Decode() 480 inputImage._encodedHeight != codec_.height)) { in Decode() 481 codec_.width = inputImage._encodedWidth; in Decode() 482 codec_.height = inputImage._encodedHeight; in Decode() 493 if (inputImage._frameType != webrtc::kVideoFrameKey) { in Decode() [all …]
|
/external/webrtc/webrtc/test/ |
D | configurable_frame_size_encoder.cc | 42 const VideoFrame& inputImage, in Encode() argument 48 encodedImage._encodedHeight = inputImage.height(); in Encode() 49 encodedImage._encodedWidth = inputImage.width(); in Encode() 51 encodedImage._timeStamp = inputImage.timestamp(); in Encode() 52 encodedImage.capture_time_ms_ = inputImage.render_time_ms(); in Encode()
|
/external/webrtc/webrtc/modules/video_coding/codecs/i420/include/ |
D | i420.h | 51 int Encode(const VideoFrame& inputImage, 114 int Decode(const EncodedImage& inputImage,
|
/external/webrtc/webrtc/modules/video_coding/codecs/interface/mock/ |
D | mock_video_codec_interface.h | 41 int32_t(const VideoFrame& inputImage, 68 int32_t(const EncodedImage& inputImage,
|
/external/webrtc/webrtc/modules/video_coding/include/mock/ |
D | mock_video_codec_interface.h | 39 int32_t(const VideoFrame& inputImage, 67 int32_t(const EncodedImage& inputImage,
|
/external/deqp/external/vulkancts/modules/vulkan/geometry/ |
D | vktGeometryLayeredRenderingTests.cpp | 524 static void convertDepthToColorBufferAccess (const tcu::ConstPixelBufferAccess& inputImage, tcu::Pi… in convertDepthToColorBufferAccess() argument 526 for (int y = 0; y < inputImage.getHeight(); y++) in convertDepthToColorBufferAccess() 527 for (int x = 0; x < inputImage.getWidth(); x++) in convertDepthToColorBufferAccess() 529 const float depth = inputImage.getPixDepth(x, y); in convertDepthToColorBufferAccess() 536 static void convertStencilToColorBufferAccess (const tcu::ConstPixelBufferAccess& inputImage, tcu::… in convertStencilToColorBufferAccess() argument 538 for (int y = 0; y < inputImage.getHeight(); y++) in convertStencilToColorBufferAccess() 539 for (int x = 0; x < inputImage.getWidth(); x++) in convertStencilToColorBufferAccess() 541 const int stencilInt = inputImage.getPixStencil(x, y); in convertStencilToColorBufferAccess()
|
/external/ImageMagick/MagickCore/ |
D | accelerate-kernels-private.h | 1479 __kernel void HullPass1(const __global CLPixelType *inputImage, __global CLPixelType *outputImage 1486 CLPixelType v = inputImage[y*imageWidth+x]; 1497 … && clampedNeighbor.y == neighbor.y)?inputImage[clampedNeighbor.y*imageWidth+clampedNeighbor.x] 1542 __kernel void HullPass2(const __global CLPixelType *inputImage, __global CLPixelType *outputImage 1549 CLPixelType v = inputImage[y*imageWidth+x]; 1559 && clampedNeighbor.y == neighbor.y)?inputImage[clampedNeighbor.y*imageWidth+clampedNeighbor.x] 1569 && clampedNeighbor.y == neighbor.y)?inputImage[clampedNeighbor.y*imageWidth+clampedNeighbor.x] 2459 …void ResizeHorizontalFilter(const __global CLQuantum *inputImage, const unsigned int number_channe… 2485 event_t e = async_work_group_copy(inputImageCache, inputImage + pos, num_elements, 0); 2621 …void ResizeVerticalFilter(const __global CLQuantum *inputImage, const unsigned int number_channels, [all …]
|
D | opencl.c | 1043 *inputImage; in RunOpenCLBenchmark() local 1055 inputImage=ReadImage(imageInfo,exception); in RunOpenCLBenchmark() 1069 bluredImage=BlurImage(inputImage,10.0f,3.5f,exception); in RunOpenCLBenchmark() 1100 DestroyImage(inputImage); in RunOpenCLBenchmark()
|
/external/webrtc/talk/media/webrtc/ |
D | fakewebrtcvideoengine.h | 158 virtual int32_t Encode(const webrtc::VideoFrame& inputImage, in Encode() argument
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
D | simulcast_encoder_adapter_unittest.cc | 115 int32_t Encode(const VideoFrame& inputImage, in Encode() argument
|
D | vp8_impl.cc | 1205 if (DecodePartitions(inputImage, fragmentation)) { in Decode()
|
/external/webrtc/webrtc/video/ |
D | video_send_stream_tests.cc | 1286 int32_t Encode(const VideoFrame& inputImage, in TEST_F() argument
|