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

  /external/webrtc/talk/media/webrtc/
webrtcvideoencoderfactory.h 43 struct VideoCodec {
50 VideoCodec(webrtc::VideoCodecType t, const std::string& nm, int w, int h,
64 virtual const std::vector<VideoCodec>& codecs() const = 0;
  /external/webrtc/talk/media/base/
codec.cc 217 std::string VideoCodec::ToString() const {
219 os << "VideoCodec[" << id << ":" << name << ":" << width << ":" << height
224 VideoCodec::VideoCodec(int id,
236 VideoCodec::VideoCodec(int id, const std::string& name)
243 VideoCodec::VideoCodec() : Codec(), width(0), height(0), framerate(0) {
247 VideoCodec::VideoCodec(const VideoCodec& c) = default
    [all...]
codec.h 163 struct VideoCodec : public Codec {
169 VideoCodec(int id,
175 VideoCodec(int id, const std::string& name);
177 VideoCodec();
178 VideoCodec(const VideoCodec& c);
179 ~VideoCodec() = default;
181 static bool Preferable(const VideoCodec& first, const VideoCodec& other) {
187 VideoCodec& operator=(const VideoCodec& c)
    [all...]
  /frameworks/av/include/media/
MediaProfiles.h 183 struct VideoCodec {
184 VideoCodec(video_encoder codec, int bitRate, int frameWidth, int frameHeight, int frameRate)
191 VideoCodec(const VideoCodec& copy) {
199 ~VideoCodec() {}
244 mVideoCodec = new VideoCodec(*copy.mVideoCodec);
257 VideoCodec *mVideoCodec;
331 static void logVideoCodec(const VideoCodec& codec);
342 static VideoCodec* createVideoCodec(const char **atts, MediaProfiles *profiles);
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecListTest.java 85 class VideoCodec extends CodecType {
86 VideoCodec(String mime, boolean isEncoder) {
388 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_AVC, false)); // avc decoder
389 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_AVC, true)); // avc encoder
390 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_VP8, false)); // vp8 decoder
391 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_VP8, true)); // vp8 encoder
392 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_VP9, false)); // vp9 decoder
393 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_HEVC, false)); // hevc decoder
394 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_MPEG4, false)); // m4v decoder
395 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_H263, false)); // h263 decode
    [all...]
  /external/webrtc/webrtc/
common_types.h 687 struct VideoCodec {
715 bool operator==(const VideoCodec& other) const {
739 bool operator!=(const VideoCodec& other) const {

Completed in 485 milliseconds