HomeSort by relevance Sort by last modified time
    Searched defs:VideoCodecInst (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
VideoCodecInst.java 13 public class VideoCodecInst {
16 // VideoCodecInst can only be created from the native layer.
17 private VideoCodecInst(long nativeCodecInst) {
30 // Dispose must be called before all references to VideoCodecInst are lost as
  /external/chromium_org/third_party/webrtc/modules/media_file/source/
media_file_impl.cc 868 const VideoCodec& videoCodecInst,
874 return StartRecordingFile(fileName, format, codecInst, videoCodecInst,
882 const VideoCodec& videoCodecInst,
924 videoCodecInst, notificationTimeMs,
958 const VideoCodec& videoCodecInst,
1069 videoCodecInst,videoOnly) == -1) ||
    [all...]
media_file_utility.cc 95 const VideoCodec& videoCodecInst,
107 if (strncmp(videoCodecInst.plName, "I420", 7) == 0)
113 if (strncmp(videoCodecInst.plName, "VP8", 7) == 0)
126 videoStreamHeader.dwRate = videoCodecInst.maxFramerate;
127 videoStreamHeader.dwSuggestedBufferSize = videoCodecInst.height *
128 (videoCodecInst.width >> 1) * 3;
132 videoStreamHeader.rcFrame.bottom = videoCodecInst.height;
134 videoStreamHeader.rcFrame.right = videoCodecInst.width;
138 bitMapInfoHeader.biHeight = videoCodecInst.height;
139 bitMapInfoHeader.biWidth = videoCodecInst.width
    [all...]

Completed in 1669 milliseconds