Searched refs:frameSize (Results 1 - 25 of 78) sorted by relevance

1234

/external/llvm/lib/Target/Sparc/
H A DSparcSubtarget.cpp59 int SparcSubtarget::getAdjustedFrameSize(int frameSize) const {
64 frameSize += 128;
67 frameSize = RoundUpToAlignment(frameSize, 16);
76 frameSize += 92;
80 frameSize = RoundUpToAlignment(frameSize, 8);
82 return frameSize;
/external/opencv3/modules/videostab/include/opencv2/videostab/
H A Doutlier_rejection.hpp64 Size frameSize, InputArray points0, InputArray points1, OutputArray mask) = 0;
71 Size frameSize, InputArray points0, InputArray points1, OutputArray mask);
86 Size frameSize, InputArray points0, InputArray points1, OutputArray mask);
/external/opencv3/modules/videoio/
H A Dprecomp.hpp114 double fps, CvSize frameSize, int is_color );
116 double fps, CvSize frameSize, int is_color );
121 double fps, CvSize frameSize, int is_color );
144 double fps, CvSize frameSize, int is_color );
150 double fps, CvSize frameSize, int is_color );
154 double fps, CvSize frameSize, int is_color );
160 double fps, CvSize frameSize, int is_color );
188 Ptr<IVideoWriter> createMotionJpegWriter( const String& filename, double fps, Size frameSize, bool iscolor );
/external/opencv3/modules/videoio/src/
H A Dprecomp.hpp114 double fps, CvSize frameSize, int is_color );
116 double fps, CvSize frameSize, int is_color );
121 double fps, CvSize frameSize, int is_color );
144 double fps, CvSize frameSize, int is_color );
150 double fps, CvSize frameSize, int is_color );
154 double fps, CvSize frameSize, int is_color );
160 double fps, CvSize frameSize, int is_color );
188 Ptr<IVideoWriter> createMotionJpegWriter( const String& filename, double fps, Size frameSize, bool iscolor );
H A Dcap.cpp417 double fps, CvSize frameSize, int is_color )
428 result = cvCreateVideoWriter_FFMPEG_proxy (filename, fourcc, fps, frameSize, is_color);
433 result = cvCreateVideoWriter_VFW(filename, fourcc, fps, frameSize, is_color);
438 result = cvCreateVideoWriter_MSMF(filename, fourcc, fps, frameSize, is_color);
443 result = cvCreateVideoWriter_XINE(filename, fourcc, fps, frameSize, is_color);
448 result = cvCreateVideoWriter_AVFoundation(filename, fourcc, fps, frameSize, is_color);
453 result = cvCreateVideoWriter_QT(filename, fourcc, fps, frameSize, is_color);
458 result = cvCreateVideoWriter_GStreamer(filename, fourcc, fps, frameSize, is_color);
470 (void)frameSize;
607 static Ptr<IVideoWriter> IVideoWriter_create(const String& filename, int _fourcc, double fps, Size frameSize, boo argument
416 cvCreateVideoWriter( const char* filename, int fourcc, double fps, CvSize frameSize, int is_color ) argument
755 VideoWriter(const String& filename, int _fourcc, double fps, Size frameSize, bool isColor) argument
771 open(const String& filename, int _fourcc, double fps, Size frameSize, bool isColor) argument
[all...]
H A Dcap_ffmpeg.cpp243 virtual bool open( const char* filename, int fourcc, double fps, CvSize frameSize, bool isColor ) argument
249 ffmpegWriter = icvCreateVideoWriter_FFMPEG_p( filename, fourcc, fps, frameSize.width, frameSize.height, isColor );
267 double fps, CvSize frameSize, int isColor )
271 if( result->open( filename, fourcc, fps, frameSize, isColor != 0 ))
266 cvCreateVideoWriter_FFMPEG_proxy( const char* filename, int fourcc, double fps, CvSize frameSize, int isColor ) argument
H A Dcap_vfw.cpp671 double fps, CvSize frameSize, bool isColor );
677 bool createStreams( CvSize frameSize, bool isColor );
720 bool CvVideoWriter_VFW::open( const char* filename, int _fourcc, double _fps, CvSize frameSize, bool isColor ) argument
729 if( frameSize.width > 0 && frameSize.height > 0 &&
730 !createStreams( frameSize, isColor ) )
742 bool CvVideoWriter_VFW::createStreams( CvSize frameSize, bool isColor ) argument
749 bmih.bmiHeader = icvBitmapHeader( frameSize.width, frameSize.height, isColor ? 24 : 8 );
765 aviinfo.rcFrame.right = frameSize
834 cvCreateVideoWriter_VFW( const char* filename, int fourcc, double fps, CvSize frameSize, int isColor ) argument
[all...]
H A Dcap_gstreamer.cpp1041 double fps, CvSize frameSize, bool isColor );
1180 * \param frameSize the size of the expected frames
1194 double fps, CvSize frameSize, bool is_color )
1201 assert (frameSize.width > 0 && frameSize.height > 0);
1336 bufsize = frameSize.width * frameSize.height * 3;
1340 frameSize.width,
1341 frameSize.height,
1347 "width", G_TYPE_INT, frameSize
1193 open( const char * filename, int fourcc, double fps, CvSize frameSize, bool is_color ) argument
1564 cvCreateVideoWriter_GStreamer(const char* filename, int fourcc, double fps, CvSize frameSize, int isColor ) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DEC3TrackImpl.java31 int frameSize; field in class:EC3TrackImpl
66 long skipped = inputStream.skip(bsi.frameSize);
67 assert skipped == bsi.frameSize;
109 frameSize += bsi.frameSize;
188 entry.frameSize = 2 * (frmsiz + 1);
218 entry.frameSize *= (6 / numberOfBlocksPerSyncFrame);
387 entry.bitrate = (int) (((double) entry.samplerate) / 1536.0 * entry.frameSize * 8);
393 int read = frameSize;
395 while (frameSize
408 public int frameSize; field in class:EC3TrackImpl.BitStreamInfo
[all...]
/external/opencv3/modules/cudacodec/include/opencv2/
H A Dcudacodec.hpp196 @param frameSize Size of the input video frames.
205 CV_EXPORTS Ptr<VideoWriter> createVideoWriter(const String& fileName, Size frameSize, double fps, SurfaceFormat format = SF_BGR);
208 @param frameSize Size of the input video frames.
215 CV_EXPORTS Ptr<VideoWriter> createVideoWriter(const String& fileName, Size frameSize, double fps, const EncoderParams& params, SurfaceFormat format = SF_BGR);
220 @param frameSize Size of the input video frames.
226 CV_EXPORTS Ptr<VideoWriter> createVideoWriter(const Ptr<EncoderCallBack>& encoderCallback, Size frameSize, double fps, SurfaceFormat format = SF_BGR);
230 @param frameSize Size of the input video frames.
237 CV_EXPORTS Ptr<VideoWriter> createVideoWriter(const Ptr<EncoderCallBack>& encoderCallback, Size frameSize, double fps, const EncoderParams& params, SurfaceFormat format = SF_BGR);
/external/opencv3/modules/cudacodec/src/
H A Dvideo_writer.cpp114 VideoWriterImpl(const Ptr<EncoderCallBack>& callback, Size frameSize, double fps, SurfaceFormat format, CodecType codec = H264);
115 VideoWriterImpl(const Ptr<EncoderCallBack>& callback, Size frameSize, double fps, const EncoderParams& params, SurfaceFormat format, CodecType codec = H264);
148 VideoWriterImpl::VideoWriterImpl(const Ptr<EncoderCallBack>& callback, Size frameSize, double fps, SurfaceFormat format, CodecType codec) :
150 frameSize_(frameSize),
166 VideoWriterImpl::VideoWriterImpl(const Ptr<EncoderCallBack>& callback, Size frameSize, double fps, const EncoderParams& params, SurfaceFormat format, CodecType codec) :
168 frameSize_(frameSize),
486 void copyUYVYorYUY2Frame(Size frameSize, const GpuMat& src, GpuMat& dst)
510 stCopyYUV422.WidthInBytes = frameSize.width * 2;
511 stCopyYUV422.Height = frameSize.height;
519 void copyYV12orIYUVFrame(Size frameSize, cons
[all...]
/external/aac/libSBRdec/src/
H A Dpsdec_hybrid.h118 SCHAR frameSize; member in struct:__anon222
160 SCHAR frameSize,
/external/opencv3/modules/cudabgsegm/src/
H A Dmog.cpp99 void initialize(Size frameSize, int frameType);
175 void MOGImpl::initialize(Size frameSize, int frameType)
179 frameSize_ = frameSize;
190 weight_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC1);
191 sortKey_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC1);
192 mean_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC(work_ch));
193 var_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC(work_ch));
H A Dmog2.cpp129 void initialize(Size frameSize, int frameType);
219 void MOG2Impl::initialize(cv::Size frameSize, int frameType)
225 frameSize_ = frameSize;
236 weight_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC1);
237 variance_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC1);
238 mean_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC(work_ch));
/external/proguard/src/proguard/gui/splash/
H A DSplashPanel.java208 Dimension frameSize = frame.getSize();
209 frame.setLocation((screenSize.width - frameSize.width) / 2,
210 (screenSize.height - frameSize.height) / 2);
/external/aac/libSBRenc/src/
H A Dsbr.h141 int frameSize; /* SBR framelength. */ member in struct:SBR_ENCODER
H A Dps_encode.h183 const INT frameSize,
/external/opencv3/samples/gpu/
H A Dcascadeclassifier_nvidia_api.cpp174 Size2i frameSize;
181 frameSize.width = image.cols;
182 frameSize.height = image.rows;
200 frameSize.width = frame.cols;
201 frameSize.height = frame.rows;
272 ncvStat = process(NULL, frameSize.width, frameSize.height,
284 printf("Initialized for frame size [%dx%d]\n", frameSize.width, frameSize.height);
320 ncvStat = process(&gray, frameSize
[all...]
/external/speex/libspeex/
H A Dmodes.h118 int frameSize; /**< Size of frames used for encoding */ member in struct:SpeexNBMode
137 int frameSize; /**< Size of frames used for encoding */ member in struct:SpeexSBMode
H A Dnb_celp.c132 st->frameSize = mode->frameSize;
133 st->nbSubframes=mode->frameSize/mode->subframeSize;
135 st->windowSize = st->frameSize+st->subframeSize;
159 st->winBuf = (spx_word16_t*)speex_alloc((st->windowSize-st->frameSize)*sizeof(spx_word16_t));
161 st->excBuf = (spx_word16_t*)speex_alloc((mode->frameSize+mode->pitchEnd+2)*sizeof(spx_word16_t));
163 st->swBuf = (spx_word16_t*)speex_alloc((mode->frameSize+mode->pitchEnd+2)*sizeof(spx_word16_t));
295 SPEEX_MOVE(st->excBuf, st->excBuf+st->frameSize, st->max_pitch+2);
296 SPEEX_MOVE(st->swBuf, st->swBuf+st->frameSize, st->max_pitch+2);
299 highpass(in, in, st->frameSize, (s
[all...]
H A Dnb_celp.h53 int frameSize; /**< Size of frames */ member in struct:EncState
127 int frameSize; /**< Size of frames */ member in struct:DecState
/external/opencv3/modules/video/src/
H A Dbgfg_gaussmix2.cpp127 frameSize = Size(0,0);
152 frameSize = Size(0,0);
185 frameSize = _frameSize;
205 u_weight.create(frameSize.height * nmixtures, frameSize.width, CV_32FC1);
208 u_variance.create(frameSize.height * nmixtures, frameSize.width, CV_32FC1);
213 u_mean.create(frameSize.height * nmixtures, frameSize.width, CV_32FC(nchannels)); //4 channels
217 u_bgmodelUsedModes.create(frameSize, CV_8UC
314 Size frameSize; member in class:cv::BackgroundSubtractorMOG2Impl
[all...]
H A Dbgfg_KNN.cpp72 frameSize = Size(0,0);
97 frameSize = Size(0,0);
128 frameSize = _frameSize;
136 int size=frameSize.height*frameSize.width;
209 Size frameSize; member in class:cv::BackgroundSubtractorKNNImpl
563 bool needToInitialize = nframes == 0 || learningRate >= 1 || image.size() != frameSize || image.type() != frameType;
602 Mat meanBackground(frameSize, CV_8UC3, Scalar::all(0));
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dbandwidth_estimator.h48 * - frameSize : length of signal frame in ms, from iSAC decoder
62 const int16_t frameSize,
/external/opencv3/modules/java/generator/src/java/
H A Dandroid+JavaCameraView.java145 Size frameSize = calculateCameraFrameSize(sizes, new JavaCameraSizeAccessor(), width, height);
148 Log.d(TAG, "Set preview size to " + Integer.valueOf((int)frameSize.width) + "x" + Integer.valueOf((int)frameSize.height));
149 params.setPreviewSize((int)frameSize.width, (int)frameSize.height);

Completed in 1180 milliseconds

1234