Searched defs:video_format (Results 1 - 8 of 8) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
H A DVUIParameters.java43 public int video_format; field in class:VUIParameters
73 ", video_format=" + video_format + "\n" +
/external/chromium_org/media/cdm/ppapi/
H A Dffmpeg_cdm_video_decoder.cc35 static PixelFormat CdmVideoFormatToPixelFormat(cdm::VideoFormat video_format) { argument
36 switch (video_format) {
42 DVLOG(1) << "Unsupported cdm::VideoFormat: " << video_format;
/external/chromium_org/media/ffmpeg/
H A Dffmpeg_common.cc529 PixelFormat VideoFormatToPixelFormat(VideoFrame::Format video_format) { argument
530 switch (video_format) {
540 DVLOG(1) << "Unsupported VideoFrame::Format: " << video_format;
/external/chromium_org/media/video/capture/
H A Dfile_video_capture_device.cc45 // returning the collected format in |video_format|. For a non authoritative
56 media::VideoCaptureFormat* video_format) {
57 video_format->pixel_format = media::PIXEL_FORMAT_I420;
58 video_format->frame_size.set_width(0);
59 video_format->frame_size.set_height(0);
72 video_format->frame_size.set_width(ParseY4MInt(token));
75 video_format->frame_size.set_height(ParseY4MInt(token));
83 video_format->frame_rate = fps_numerator / fps_denominator;
105 CHECK(video_format->IsValid());
109 // format in |video_format|
55 ParseY4MTags(const std::string& file_header, media::VideoCaptureFormat* video_format) argument
112 ParseFileAndExtractVideoFormat( const base::PlatformFile& file, media::VideoCaptureFormat* video_format) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dcapturemanager.cc60 VideoFormat video_format; member in struct:cricket::VideoCapturerState::CaptureResolutionInfo
92 if (desired_format == iter->video_format) {
104 if (format == iter->video_format) {
124 if (iter->video_format.width > highest_format.width) {
125 highest_format.width = iter->video_format.width;
127 if (iter->video_format.height > highest_format.height) {
128 highest_format.height = iter->video_format.height;
130 if (iter->video_format.interval < highest_format.interval) {
131 highest_format.interval = iter->video_format.interval;
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dchannelmanager.cc809 VideoCapturer* capturer, const VideoFormat& video_format) {
812 capture_manager_.get(), capturer, video_format));
826 VideoCapturer* capturer, const VideoFormat& video_format) {
829 capture_manager_.get(), capturer, video_format));
808 StartVideoCapture( VideoCapturer* capturer, const VideoFormat& video_format) argument
825 StopVideoCapture( VideoCapturer* capturer, const VideoFormat& video_format) argument
H A Dchannel.cc2268 const VideoFormat* video_format = capturer->GetCaptureFormat(); local
2269 data->fps = VideoFormat::IntervalToFps(video_format->interval);
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoengine.cc609 const VideoFormat& video_format() const { function in class:cricket::WebRtcVideoChannelSendInfo
612 void set_video_format(const VideoFormat& video_format) { argument
613 video_format_ = video_format;
620 if (video_format() == cricket::VideoFormat()) {
809 static void UpdateVideoCodec(const cricket::VideoFormat& video_format, argument
811 if ((target_codec == NULL) || (video_format == cricket::VideoFormat())) {
814 target_codec->width = video_format.width;
815 target_codec->height = video_format.height;
817 video_format.interval);
2900 const VideoFormat& video_format local
3372 const VideoFormat& video_format = send_channel->video_format(); local
3542 const VideoFormat& video_format = send_channel->video_format(); local
[all...]

Completed in 650 milliseconds