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/media/libmedia/include/media/
MediaProfiles.h 208 struct VideoCodec {
209 VideoCodec(video_encoder codec, int bitRate, int frameWidth, int frameHeight, int frameRate)
216 VideoCodec(const VideoCodec& copy) {
224 ~VideoCodec() {}
269 mVideoCodec = new VideoCodec(*copy.mVideoCodec);
282 VideoCodec *mVideoCodec;
356 static void logVideoCodec(const VideoCodec& codec);
371 static VideoCodec* createVideoCodec(const char **atts, MediaProfiles *profiles);
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecListTest.java 87 class VideoCodec extends CodecType {
88 VideoCodec(String mime, boolean isEncoder) {
393 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_AVC, false)); // avc decoder
394 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_AVC, true)); // avc encoder
395 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_VP8, false)); // vp8 decoder
396 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_VP8, true)); // vp8 encoder
397 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_VP9, false)); // vp9 decoder
398 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_HEVC, false)); // hevc decoder
399 list.add(new VideoCodec(MediaFormat.MIMETYPE_VIDEO_MPEG4, false)); // m4v decoder
400 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 1185 milliseconds