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

  /external/opencv3/modules/cudacodec/src/
video_decoder.cpp 78 std::memset(&createInfo_, 0, sizeof(CUVIDDECODECREATEINFO));
81 createInfo_.CodecType = _codec;
82 createInfo_.ulWidth = videoFormat.width;
83 createInfo_.ulHeight = videoFormat.height;
84 createInfo_.ulNumDecodeSurfaces = FrameQueue::MaximumSize;
87 while (createInfo_.ulNumDecodeSurfaces * videoFormat.width * videoFormat.height > 16 * 1024 * 1024)
88 createInfo_.ulNumDecodeSurfaces--;
90 createInfo_.ChromaFormat = _chromaFormat;
91 createInfo_.OutputFormat = cudaVideoSurfaceFormat_NV12;
92 createInfo_.DeinterlaceMode = cudaVideoDeinterlaceMode_Adaptive
    [all...]
video_decoder.hpp 72 cudaVideoCodec codec() const { return createInfo_.CodecType; }
73 unsigned long maxDecodeSurfaces() const { return createInfo_.ulNumDecodeSurfaces; }
75 unsigned long frameWidth() const { return createInfo_.ulWidth; }
76 unsigned long frameHeight() const { return createInfo_.ulHeight; }
78 unsigned long targetWidth() const { return createInfo_.ulTargetWidth; }
79 unsigned long targetHeight() const { return createInfo_.ulTargetHeight; }
81 cudaVideoChromaFormat chromaFormat() const { return createInfo_.ChromaFormat; }
106 CUVIDDECODECREATEINFO createInfo_;

Completed in 57 milliseconds