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

  /external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
VideoDecodeEncodeObserver.java 16 // VideoCodecInst.dispose must be called for |videoCodec| before all
19 void incomingCodecChanged(int videoChannel, VideoCodecInst videoCodec);
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
VideoEngine.java 72 public native VideoCodecInst getCodec(int index);
73 public native int setReceiveCodec(int channel, VideoCodecInst codec);
74 public native int setSendCodec(int channel, VideoCodecInst codec);
MediaEngine.java 509 VideoCodecInst codec = vie.getCodec(i);
524 VideoCodecInst codec = getVideoCodec(videoCodecIndex, resolutionIndex);
529 private VideoCodecInst getVideoCodec(int codecNumber, int resolution) {
530 VideoCodecInst retVal = vie.getCodec(codecNumber);
671 VideoCodecInst videoCodec) {
  /external/chromium_org/third_party/webrtc/modules/media_file/interface/
media_file.h 139 // same as what was specified by videoCodecInst for the last successfull
166 // videoCodecInst specifies the encoding of the video data. Only video data
172 const VideoCodec& videoCodecInst,
218 // Update videoCodecInst according to the current video codec being used for
220 virtual int32_t VideoCodecInst(VideoCodec& videoCodecInst) const = 0;
  /external/chromium_org/third_party/webrtc/modules/media_file/source/
media_file_impl.h 72 const VideoCodec& videoCodecInst,
90 int32_t VideoCodecInst(VideoCodec& codecInst) const;
173 // codecInst specifies the encoding of the audio data. videoCodecInst
184 const VideoCodec& videoCodecInst,
194 // codecInst specifies the encoding of the audio data. videoCodecInst
207 const VideoCodec& videoCodecInst,
media_file_utility.h 56 // data. videoCodecInst specifies the encoding of the video data. Only video
60 const VideoCodec& videoCodecInst,
75 // same as what was specified by videoCodecInst for the last successfull
84 int32_t VideoCodecInst(VideoCodec& codecInst);
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 100 const VideoCodec& videoCodecInst,
112 if (strncmp(videoCodecInst.plName, "I420", 7) == 0)
118 if (strncmp(videoCodecInst.plName, "VP8", 7) == 0)
131 videoStreamHeader.dwRate = videoCodecInst.maxFramerate;
132 videoStreamHeader.dwSuggestedBufferSize = videoCodecInst.height *
133 (videoCodecInst.width >> 1) * 3;
137 videoStreamHeader.rcFrame.bottom = videoCodecInst.height;
139 videoStreamHeader.rcFrame.right = videoCodecInst.width;
143 bitMapInfoHeader.biHeight = videoCodecInst.height;
144 bitMapInfoHeader.biWidth = videoCodecInst.width
    [all...]
  /external/chromium_org/third_party/webrtc/modules/utility/source/
file_player_impl.cc 640 if (_fileModule.VideoCodecInst(video_codec_info_) != 0)

Completed in 429 milliseconds