Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: talk/app/webrtc/java/jni/androidmediaencoder_jni.h

Issue 1403713002: MediaCodecVideoEncoder add support to encode from textures (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed factory. Deprecated setVideoHwAccelerationOptions Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2015 Google Inc. 3 * Copyright 2015 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 25 matching lines...) Expand all
36 36
37 namespace webrtc_jni { 37 namespace webrtc_jni {
38 38
39 // Implementation of Android MediaCodec based encoder factory. 39 // Implementation of Android MediaCodec based encoder factory.
40 class MediaCodecVideoEncoderFactory 40 class MediaCodecVideoEncoderFactory
41 : public cricket::WebRtcVideoEncoderFactory { 41 : public cricket::WebRtcVideoEncoderFactory {
42 public: 42 public:
43 MediaCodecVideoEncoderFactory(); 43 MediaCodecVideoEncoderFactory();
44 virtual ~MediaCodecVideoEncoderFactory(); 44 virtual ~MediaCodecVideoEncoderFactory();
45 45
46 void SetEGLContext(JNIEnv* jni, jobject render_egl_context);
47
46 // WebRtcVideoEncoderFactory implementation. 48 // WebRtcVideoEncoderFactory implementation.
47 webrtc::VideoEncoder* CreateVideoEncoder(webrtc::VideoCodecType type) 49 webrtc::VideoEncoder* CreateVideoEncoder(webrtc::VideoCodecType type)
48 override; 50 override;
49 const std::vector<VideoCodec>& codecs() const override; 51 const std::vector<VideoCodec>& codecs() const override;
50 void DestroyVideoEncoder(webrtc::VideoEncoder* encoder) override; 52 void DestroyVideoEncoder(webrtc::VideoEncoder* encoder) override;
51 53
52 private: 54 private:
55 jobject egl_context_;
53 // Empty if platform support is lacking, const after ctor returns. 56 // Empty if platform support is lacking, const after ctor returns.
54 std::vector<VideoCodec> supported_codecs_; 57 std::vector<VideoCodec> supported_codecs_;
55 }; 58 };
56 59
57 } // namespace webrtc_jni 60 } // namespace webrtc_jni
58 61
59 #endif // TALK_APP_WEBRTC_JAVA_JNI_ANDROIDMEDIAENCODER_JNI_H_ 62 #endif // TALK_APP_WEBRTC_JAVA_JNI_ANDROIDMEDIAENCODER_JNI_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698