HomeSort by relevance Sort by last modified time
    Searched refs:VIDEO (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripItemType.java 26 VIDEO,
VideoItem.java 39 * Backing data for a single video displayed in the filmstrip.
76 * synchronously decoding the video header for every item when loading our data set
78 * to decode the video header for each item and prefer whatever values it obtains.
99 * If the metadata loader has determined from the video header that we need to rotate the video
125 MediaStore.Video.VideoColumns._ID + "=" + mData.getContentId(), null);
214 return FilmstripItemType.VIDEO;
  /packages/apps/Camera2/src/com/android/camera/settings/
SettingsScopeNamespaces.java 28 public static final String VIDEO = "VideoModule";
  /frameworks/base/services/core/java/com/android/server/storage/
FileCollector.java 41 private static final int VIDEO = 1;
47 VIDEO,
81 // Video
82 EXTENSION_MAP.put("3gpp", VIDEO);
83 EXTENSION_MAP.put("3gp", VIDEO);
84 EXTENSION_MAP.put("3gpp2", VIDEO);
85 EXTENSION_MAP.put("3g2", VIDEO);
86 EXTENSION_MAP.put("avi", VIDEO);
87 EXTENSION_MAP.put("dl", VIDEO);
88 EXTENSION_MAP.put("dif", VIDEO);
    [all...]
  /external/python/cpython2/Lib/plat-irix5/
CL_old.py 21 # Video
100 VIDEO = 1
122 UNCOMPRESSED = Algorithm(VIDEO, 0)
123 UNCOMPRESSED_VIDEO = Algorithm(VIDEO, 0)
124 RLE = Algorithm(VIDEO, 1)
125 JPEG = Algorithm(VIDEO, 2)
126 MPEG_VIDEO = Algorithm(VIDEO, 3)
127 MVC1 = Algorithm(VIDEO, 4)
128 RTR = Algorithm(VIDEO, 5)
129 RTR1 = Algorithm(VIDEO, 5
    [all...]
DEVICE.py 392 VIDEO = 548
  /external/webrtc/webrtc/modules/video_coding/test/
plotTimingTest.m 4 %DEBUG ; ( 9:53:33:859 | 0) VIDEO:-1 ; 7132; Stochastic test 1
5 %DEBUG ; ( 9:53:33:859 | 0) VIDEO CODING:-1 ; 7132; Frame decoded: timeStamp=3000 decTime=10 at 10012
6 %DEBUG ; ( 9:53:33:859 | 0) VIDEO:-1 ; 7132; timeStamp=3000 clock=10037 maxWaitTime=0
7 %DEBUG ; ( 9:53:33:859 | 0) VIDEO:-1 ; 7132; timeStampMs=33 renderTime=54
plotReceiveTrace.m 3 %DEBUG ; ( 8:32:33:375 | 0) VIDEO:1 ; 5260; First packet of frame 1869537938
4 %DEBUG ; ( 8:32:33:375 | 0) VIDEO CODING:1 ; 5260; Decoding timestamp 1869534934
5 %DEBUG ; ( 8:32:33:375 | 0) VIDEO:1 ; 5260; Render frame 1869534934 at 20772610
6 %DEBUG ; ( 8:32:33:375 | 0) VIDEO CODING:-1 ; 5260; Frame decoded: timeStamp=1870511259 decTime=0 maxDecTime=0, at 19965
7 %DEBUG ; ( 7:59:42:500 | 0) VIDEO:-1 ; 2500; Received complete frame timestamp 1870514263 frame type 1 frame size 7862 at time 19965, jitter estimate was 130
8 %DEBUG ; ( 8: 5:51:774 | 0) VIDEO:-1 ; 3968; ExtrapolateLocalTime(1870967878)=24971 ms
40 if ~strncmp(char(label), 'VIDEO', 5) & ~strncmp(char(label), 'VIDEO CODING', 12)
  /external/webrtc/talk/media/base/
mediaengine.h 66 // It supports voice and video operations in the same class to facilitate
85 // Creates a video media channel, paired with the specified voice channel.
138 // voice and video engine classes.
139 template<class VOICE, class VIDEO>
204 VIDEO video_;
  /external/webrtc/webrtc/call/
packet_injection_tests.cc 63 receiver_call_->Receiver()->DeliverPacket(MediaType::VIDEO, packet,
rtc_event_log_unittest.cc 64 case rtclog::MediaType::VIDEO:
65 return MediaType::VIDEO;
460 // Create configurations for the video streams.
483 (i % 3 == 0) ? MediaType::AUDIO : MediaType::VIDEO,
488 rtcp_index % 3 == 0 ? MediaType::AUDIO : MediaType::VIDEO,
529 (i % 3 == 0) ? MediaType::AUDIO : MediaType::VIDEO,
536 rtcp_index % 3 == 0 ? MediaType::AUDIO : MediaType::VIDEO,
628 // Create configurations for the video streams.
652 log_dumper->LogRtpHeader(true, MediaType::VIDEO, recent_rtp_packet.data(),
654 log_dumper->LogRtcpPacket(false, MediaType::VIDEO,
    [all...]
rtc_event_log2rtp_dump.cc 36 "Excludes video packets from the converted RTPdump file.");
130 if (FLAGS_novideo && rtp_packet.type() == webrtc::rtclog::VIDEO)
170 if (FLAGS_novideo && rtcp_packet.type() == webrtc::rtclog::VIDEO)
rtc_event_log.cc 153 case MediaType::VIDEO:
154 return rtclog::MediaType::VIDEO;
  /external/webrtc/webrtc/
call.h 33 VIDEO,
  /packages/apps/Dialer/java/com/android/voicemail/impl/
OmtpConstants.java 100 public static final String VIDEO = "o";
107 public static final String[] CONTENT_TYPE_VALUES = {VOICE, VIDEO, FAX, INFOTAINMENT, ECC};
  /frameworks/av/media/libstagefright/include/
AVIExtractor.h 66 VIDEO,
  /hardware/qcom/display/msm8998/libdrmutils/
drm_interface.h 242 VIDEO,
257 // Valid only if DRMPanelMode is VIDEO
  /frameworks/av/media/libstagefright/codecs/common/include/
voIndex.h 93 // define video codec modules
133 _MAKE_SINK_ID (0x010000, VIDEO)
  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.h 69 // Video PES packets contain exactly one (aligned) access unit.
74 VIDEO = 0,
MPEG2TSExtractor.cpp 69 // If there are both audio and video streams, only the video stream
137 // The seek reference track (video if present; audio otherwise) performs
207 ATSParser::VIDEO).get();
255 // Wait only for 2 seconds to detect audio/video streams.
265 ATSParser::VIDEO).get()
451 for (auto t: {ATSParser::VIDEO, ATSParser::AUDIO}) {
  /hardware/qcom/display/sdm845/libdrmutils/
drm_interface.h 332 VIDEO,
347 // Valid only if DRMPanelMode is VIDEO
  /external/python/cpython2/Lib/plat-irix6/
DEVICE.py 392 VIDEO = 548
  /frameworks/av/media/libmediaplayerservice/nuplayer/
StreamingSource.cpp 213 ALOGV("video track doesn't have enough data yet. (%.2f secs buffered)",
232 audio ? ATSParser::AUDIO : ATSParser::VIDEO);
  /packages/apps/Camera2/src/com/android/camera/module/
ModulesInfo.java 55 SettingsScopeNamespaces.VIDEO);
  /external/webrtc/talk/media/webrtc/
fakewebrtccall.cc 397 media_type == webrtc::MediaType::VIDEO) {

Completed in 1033 milliseconds

1 2 3 4