glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 1 | /* |
| 2 | * libjingle |
| 3 | * Copyright 2015 Google Inc. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions are met: |
| 7 | * |
| 8 | * 1. Redistributions of source code must retain the above copyright notice, |
| 9 | * this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * 3. The name of the author may not be used to endorse or promote products |
| 14 | * derived from this software without specific prior written permission. |
| 15 | * |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 17 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 18 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
| 19 | * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 20 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 21 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 22 | * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 23 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 24 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 25 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | * |
| 27 | */ |
| 28 | |
magjed | 6d387c0 | 2015-10-14 04:02:01 -0700 | [diff] [blame] | 29 | #include <algorithm> |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 30 | #include <vector> |
| 31 | |
| 32 | #include "talk/app/webrtc/java/jni/androidmediadecoder_jni.h" |
| 33 | #include "talk/app/webrtc/java/jni/androidmediacodeccommon.h" |
| 34 | #include "talk/app/webrtc/java/jni/classreferenceholder.h" |
| 35 | #include "talk/app/webrtc/java/jni/native_handle_impl.h" |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 36 | #include "talk/app/webrtc/java/jni/surfacetexturehelper_jni.h" |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 37 | #include "webrtc/base/bind.h" |
| 38 | #include "webrtc/base/checks.h" |
| 39 | #include "webrtc/base/logging.h" |
Magnus Jedvert | bbda54e | 2015-09-30 16:06:37 +0200 | [diff] [blame] | 40 | #include "webrtc/base/scoped_ref_ptr.h" |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 41 | #include "webrtc/base/thread.h" |
Magnus Jedvert | 7e31937 | 2015-10-02 15:49:38 +0200 | [diff] [blame] | 42 | #include "webrtc/base/timeutils.h" |
kjellander | 6f8ce06 | 2015-11-16 13:52:24 -0800 | [diff] [blame] | 43 | #include "webrtc/common_video/include/i420_buffer_pool.h" |
perkj | 87d5845 | 2015-11-23 01:46:27 -0800 | [diff] [blame] | 44 | #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
Henrik Kjellander | 98f5351 | 2015-10-28 18:17:40 +0100 | [diff] [blame] | 45 | #include "webrtc/system_wrappers/include/logcat_trace_context.h" |
| 46 | #include "webrtc/system_wrappers/include/tick_util.h" |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 47 | #include "third_party/libyuv/include/libyuv/convert.h" |
| 48 | #include "third_party/libyuv/include/libyuv/convert_from.h" |
| 49 | #include "third_party/libyuv/include/libyuv/video_common.h" |
| 50 | |
| 51 | using rtc::Bind; |
| 52 | using rtc::Thread; |
| 53 | using rtc::ThreadManager; |
| 54 | using rtc::scoped_ptr; |
| 55 | |
| 56 | using webrtc::CodecSpecificInfo; |
| 57 | using webrtc::DecodedImageCallback; |
| 58 | using webrtc::EncodedImage; |
Miguel Casas-Sanchez | 4765070 | 2015-05-29 17:21:40 -0700 | [diff] [blame] | 59 | using webrtc::VideoFrame; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 60 | using webrtc::RTPFragmentationHeader; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 61 | using webrtc::TickTime; |
| 62 | using webrtc::VideoCodec; |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 63 | using webrtc::VideoCodecType; |
| 64 | using webrtc::kVideoCodecH264; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 65 | using webrtc::kVideoCodecVP8; |
Alex Glaznev | 69a7fd5 | 2015-11-10 10:25:40 -0800 | [diff] [blame] | 66 | using webrtc::kVideoCodecVP9; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 67 | |
| 68 | namespace webrtc_jni { |
| 69 | |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 70 | class MediaCodecVideoDecoder : public webrtc::VideoDecoder, |
| 71 | public rtc::MessageHandler { |
| 72 | public: |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 73 | explicit MediaCodecVideoDecoder( |
| 74 | JNIEnv* jni, VideoCodecType codecType, jobject render_egl_context); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 75 | virtual ~MediaCodecVideoDecoder(); |
| 76 | |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 77 | int32_t InitDecode(const VideoCodec* codecSettings, int32_t numberOfCores) |
| 78 | override; |
| 79 | |
| 80 | int32_t Decode( |
| 81 | const EncodedImage& inputImage, bool missingFrames, |
| 82 | const RTPFragmentationHeader* fragmentation, |
| 83 | const CodecSpecificInfo* codecSpecificInfo = NULL, |
| 84 | int64_t renderTimeMs = -1) override; |
| 85 | |
| 86 | int32_t RegisterDecodeCompleteCallback(DecodedImageCallback* callback) |
| 87 | override; |
| 88 | |
| 89 | int32_t Release() override; |
| 90 | |
| 91 | int32_t Reset() override; |
| 92 | // rtc::MessageHandler implementation. |
| 93 | void OnMessage(rtc::Message* msg) override; |
| 94 | |
| 95 | private: |
| 96 | // CHECK-fail if not running on |codec_thread_|. |
| 97 | void CheckOnCodecThread(); |
| 98 | |
| 99 | int32_t InitDecodeOnCodecThread(); |
| 100 | int32_t ReleaseOnCodecThread(); |
| 101 | int32_t DecodeOnCodecThread(const EncodedImage& inputImage); |
| 102 | // Deliver any outputs pending in the MediaCodec to our |callback_| and return |
| 103 | // true on success. |
| 104 | bool DeliverPendingOutputs(JNIEnv* jni, int dequeue_timeout_us); |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 105 | int32_t ProcessHWErrorOnCodecThread(); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 106 | |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 107 | // Type of video codec. |
| 108 | VideoCodecType codecType_; |
| 109 | |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 110 | bool key_frame_required_; |
| 111 | bool inited_; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 112 | bool sw_fallback_required_; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 113 | bool use_surface_; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 114 | VideoCodec codec_; |
Magnus Jedvert | bbda54e | 2015-09-30 16:06:37 +0200 | [diff] [blame] | 115 | webrtc::I420BufferPool decoded_frame_pool_; |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 116 | rtc::scoped_refptr<SurfaceTextureHelper> surface_texture_helper_; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 117 | DecodedImageCallback* callback_; |
| 118 | int frames_received_; // Number of frames received by decoder. |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 119 | int frames_decoded_; // Number of frames decoded by decoder. |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 120 | int64_t start_time_ms_; // Start time for statistics. |
| 121 | int current_frames_; // Number of frames in the current statistics interval. |
| 122 | int current_bytes_; // Encoded bytes in the current statistics interval. |
| 123 | int current_decoding_time_ms_; // Overall decoding time in the current second |
| 124 | uint32_t max_pending_frames_; // Maximum number of pending input frames |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 125 | |
| 126 | // State that is constant for the lifetime of this object once the ctor |
| 127 | // returns. |
| 128 | scoped_ptr<Thread> codec_thread_; // Thread on which to operate MediaCodec. |
| 129 | ScopedGlobalRef<jclass> j_media_codec_video_decoder_class_; |
| 130 | ScopedGlobalRef<jobject> j_media_codec_video_decoder_; |
| 131 | jmethodID j_init_decode_method_; |
| 132 | jmethodID j_release_method_; |
| 133 | jmethodID j_dequeue_input_buffer_method_; |
| 134 | jmethodID j_queue_input_buffer_method_; |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 135 | jmethodID j_dequeue_byte_buffer_method_; |
| 136 | jmethodID j_dequeue_texture_buffer_method_; |
magjed | 44bf6f5 | 2015-10-03 02:08:00 -0700 | [diff] [blame] | 137 | jmethodID j_return_decoded_byte_buffer_method_; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 138 | // MediaCodecVideoDecoder fields. |
| 139 | jfieldID j_input_buffers_field_; |
| 140 | jfieldID j_output_buffers_field_; |
| 141 | jfieldID j_color_format_field_; |
| 142 | jfieldID j_width_field_; |
| 143 | jfieldID j_height_field_; |
| 144 | jfieldID j_stride_field_; |
| 145 | jfieldID j_slice_height_field_; |
magjed | 44bf6f5 | 2015-10-03 02:08:00 -0700 | [diff] [blame] | 146 | // MediaCodecVideoDecoder.DecodedTextureBuffer fields. |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 147 | jfieldID j_texture_id_field_; |
| 148 | jfieldID j_transform_matrix_field_; |
| 149 | jfieldID j_texture_timestamp_ms_field_; |
| 150 | jfieldID j_texture_ntp_timestamp_ms_field_; |
| 151 | jfieldID j_texture_decode_time_ms_field_; |
| 152 | jfieldID j_texture_frame_delay_ms_field_; |
| 153 | // MediaCodecVideoDecoder.DecodedOutputBuffer fields. |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 154 | jfieldID j_info_index_field_; |
| 155 | jfieldID j_info_offset_field_; |
| 156 | jfieldID j_info_size_field_; |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 157 | jfieldID j_info_timestamp_ms_field_; |
| 158 | jfieldID j_info_ntp_timestamp_ms_field_; |
| 159 | jfieldID j_byte_buffer_decode_time_ms_field_; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 160 | |
| 161 | // Global references; must be deleted in Release(). |
| 162 | std::vector<jobject> input_buffers_; |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 163 | |
| 164 | // Render EGL context - owned by factory, should not be allocated/destroyed |
| 165 | // by VideoDecoder. |
| 166 | jobject render_egl_context_; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 167 | }; |
| 168 | |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 169 | MediaCodecVideoDecoder::MediaCodecVideoDecoder( |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 170 | JNIEnv* jni, VideoCodecType codecType, jobject render_egl_context) : |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 171 | codecType_(codecType), |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 172 | render_egl_context_(render_egl_context), |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 173 | key_frame_required_(true), |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 174 | inited_(false), |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 175 | sw_fallback_required_(false), |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 176 | codec_thread_(new Thread()), |
| 177 | j_media_codec_video_decoder_class_( |
| 178 | jni, |
| 179 | FindClass(jni, "org/webrtc/MediaCodecVideoDecoder")), |
| 180 | j_media_codec_video_decoder_( |
| 181 | jni, |
| 182 | jni->NewObject(*j_media_codec_video_decoder_class_, |
| 183 | GetMethodID(jni, |
| 184 | *j_media_codec_video_decoder_class_, |
| 185 | "<init>", |
| 186 | "()V"))) { |
| 187 | ScopedLocalRefFrame local_ref_frame(jni); |
| 188 | codec_thread_->SetName("MediaCodecVideoDecoder", NULL); |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 189 | RTC_CHECK(codec_thread_->Start()) << "Failed to start MediaCodecVideoDecoder"; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 190 | |
| 191 | j_init_decode_method_ = GetMethodID( |
| 192 | jni, *j_media_codec_video_decoder_class_, "initDecode", |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 193 | "(Lorg/webrtc/MediaCodecVideoDecoder$VideoCodecType;" |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 194 | "IILorg/webrtc/SurfaceTextureHelper;)Z"); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 195 | j_release_method_ = |
| 196 | GetMethodID(jni, *j_media_codec_video_decoder_class_, "release", "()V"); |
| 197 | j_dequeue_input_buffer_method_ = GetMethodID( |
| 198 | jni, *j_media_codec_video_decoder_class_, "dequeueInputBuffer", "()I"); |
| 199 | j_queue_input_buffer_method_ = GetMethodID( |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 200 | jni, *j_media_codec_video_decoder_class_, "queueInputBuffer", "(IIJJJ)Z"); |
| 201 | j_dequeue_byte_buffer_method_ = GetMethodID( |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 202 | jni, *j_media_codec_video_decoder_class_, "dequeueOutputBuffer", |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 203 | "(I)Lorg/webrtc/MediaCodecVideoDecoder$DecodedOutputBuffer;"); |
| 204 | j_dequeue_texture_buffer_method_ = GetMethodID( |
| 205 | jni, *j_media_codec_video_decoder_class_, "dequeueTextureBuffer", |
| 206 | "(I)Lorg/webrtc/MediaCodecVideoDecoder$DecodedTextureBuffer;"); |
magjed | 44bf6f5 | 2015-10-03 02:08:00 -0700 | [diff] [blame] | 207 | j_return_decoded_byte_buffer_method_ = |
| 208 | GetMethodID(jni, *j_media_codec_video_decoder_class_, |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 209 | "returnDecodedOutputBuffer", "(I)V"); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 210 | |
| 211 | j_input_buffers_field_ = GetFieldID( |
| 212 | jni, *j_media_codec_video_decoder_class_, |
| 213 | "inputBuffers", "[Ljava/nio/ByteBuffer;"); |
| 214 | j_output_buffers_field_ = GetFieldID( |
| 215 | jni, *j_media_codec_video_decoder_class_, |
| 216 | "outputBuffers", "[Ljava/nio/ByteBuffer;"); |
| 217 | j_color_format_field_ = GetFieldID( |
| 218 | jni, *j_media_codec_video_decoder_class_, "colorFormat", "I"); |
| 219 | j_width_field_ = GetFieldID( |
| 220 | jni, *j_media_codec_video_decoder_class_, "width", "I"); |
| 221 | j_height_field_ = GetFieldID( |
| 222 | jni, *j_media_codec_video_decoder_class_, "height", "I"); |
| 223 | j_stride_field_ = GetFieldID( |
| 224 | jni, *j_media_codec_video_decoder_class_, "stride", "I"); |
| 225 | j_slice_height_field_ = GetFieldID( |
| 226 | jni, *j_media_codec_video_decoder_class_, "sliceHeight", "I"); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 227 | |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 228 | jclass j_decoded_texture_buffer_class = FindClass(jni, |
magjed | 44bf6f5 | 2015-10-03 02:08:00 -0700 | [diff] [blame] | 229 | "org/webrtc/MediaCodecVideoDecoder$DecodedTextureBuffer"); |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 230 | j_texture_id_field_ = GetFieldID( |
| 231 | jni, j_decoded_texture_buffer_class, "textureID", "I"); |
| 232 | j_transform_matrix_field_ = GetFieldID( |
| 233 | jni, j_decoded_texture_buffer_class, "transformMatrix", "[F"); |
| 234 | j_texture_timestamp_ms_field_ = GetFieldID( |
| 235 | jni, j_decoded_texture_buffer_class, "timeStampMs", "J"); |
| 236 | j_texture_ntp_timestamp_ms_field_ = GetFieldID( |
| 237 | jni, j_decoded_texture_buffer_class, "ntpTimeStampMs", "J"); |
| 238 | j_texture_decode_time_ms_field_ = GetFieldID( |
| 239 | jni, j_decoded_texture_buffer_class, "decodeTimeMs", "J"); |
| 240 | j_texture_frame_delay_ms_field_ = GetFieldID( |
| 241 | jni, j_decoded_texture_buffer_class, "frameDelayMs", "J"); |
magjed | 44bf6f5 | 2015-10-03 02:08:00 -0700 | [diff] [blame] | 242 | |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 243 | jclass j_decoded_output_buffer_class = FindClass(jni, |
| 244 | "org/webrtc/MediaCodecVideoDecoder$DecodedOutputBuffer"); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 245 | j_info_index_field_ = GetFieldID( |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 246 | jni, j_decoded_output_buffer_class, "index", "I"); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 247 | j_info_offset_field_ = GetFieldID( |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 248 | jni, j_decoded_output_buffer_class, "offset", "I"); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 249 | j_info_size_field_ = GetFieldID( |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 250 | jni, j_decoded_output_buffer_class, "size", "I"); |
| 251 | j_info_timestamp_ms_field_ = GetFieldID( |
| 252 | jni, j_decoded_output_buffer_class, "timeStampMs", "J"); |
| 253 | j_info_ntp_timestamp_ms_field_ = GetFieldID( |
| 254 | jni, j_decoded_output_buffer_class, "ntpTimeStampMs", "J"); |
| 255 | j_byte_buffer_decode_time_ms_field_ = GetFieldID( |
| 256 | jni, j_decoded_output_buffer_class, "decodeTimeMs", "J"); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 257 | |
| 258 | CHECK_EXCEPTION(jni) << "MediaCodecVideoDecoder ctor failed"; |
Magnus Jedvert | 207370f | 2015-09-16 12:32:21 +0200 | [diff] [blame] | 259 | use_surface_ = (render_egl_context_ != NULL); |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 260 | ALOGD << "MediaCodecVideoDecoder ctor. Use surface: " << use_surface_; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 261 | memset(&codec_, 0, sizeof(codec_)); |
| 262 | AllowBlockingCalls(); |
| 263 | } |
| 264 | |
| 265 | MediaCodecVideoDecoder::~MediaCodecVideoDecoder() { |
| 266 | // Call Release() to ensure no more callbacks to us after we are deleted. |
| 267 | Release(); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | int32_t MediaCodecVideoDecoder::InitDecode(const VideoCodec* inst, |
| 271 | int32_t numberOfCores) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 272 | ALOGD << "InitDecode."; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 273 | if (inst == NULL) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 274 | ALOGE << "NULL VideoCodec instance"; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 275 | return WEBRTC_VIDEO_CODEC_ERR_PARAMETER; |
| 276 | } |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 277 | // Factory should guard against other codecs being used with us. |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 278 | RTC_CHECK(inst->codecType == codecType_) |
| 279 | << "Unsupported codec " << inst->codecType << " for " << codecType_; |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 280 | |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 281 | if (sw_fallback_required_) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 282 | ALOGE << "InitDecode() - fallback to SW decoder"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 283 | return WEBRTC_VIDEO_CODEC_OK; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 284 | } |
| 285 | // Save VideoCodec instance for later. |
| 286 | if (&codec_ != inst) { |
| 287 | codec_ = *inst; |
| 288 | } |
glaznev | e55c42c | 2015-10-28 10:30:32 -0700 | [diff] [blame] | 289 | // If maxFramerate is not set then assume 30 fps. |
| 290 | codec_.maxFramerate = (codec_.maxFramerate >= 1) ? codec_.maxFramerate : 30; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 291 | |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 292 | // Call Java init. |
| 293 | return codec_thread_->Invoke<int32_t>( |
| 294 | Bind(&MediaCodecVideoDecoder::InitDecodeOnCodecThread, this)); |
| 295 | } |
| 296 | |
| 297 | int32_t MediaCodecVideoDecoder::InitDecodeOnCodecThread() { |
| 298 | CheckOnCodecThread(); |
| 299 | JNIEnv* jni = AttachCurrentThreadIfNeeded(); |
| 300 | ScopedLocalRefFrame local_ref_frame(jni); |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 301 | ALOGD << "InitDecodeOnCodecThread Type: " << (int)codecType_ << ". " |
| 302 | << codec_.width << " x " << codec_.height << ". Fps: " << |
| 303 | (int)codec_.maxFramerate; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 304 | |
| 305 | // Release previous codec first if it was allocated before. |
| 306 | int ret_val = ReleaseOnCodecThread(); |
| 307 | if (ret_val < 0) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 308 | ALOGE << "Release failure: " << ret_val << " - fallback to SW codec"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 309 | sw_fallback_required_ = true; |
| 310 | return WEBRTC_VIDEO_CODEC_ERROR; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 311 | } |
| 312 | |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 313 | // Always start with a complete key frame. |
| 314 | key_frame_required_ = true; |
| 315 | frames_received_ = 0; |
| 316 | frames_decoded_ = 0; |
| 317 | |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 318 | if (use_surface_) { |
| 319 | surface_texture_helper_ = new rtc::RefCountedObject<SurfaceTextureHelper>( |
| 320 | jni, render_egl_context_); |
| 321 | } |
| 322 | |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 323 | jobject j_video_codec_enum = JavaEnumFromIndex( |
| 324 | jni, "MediaCodecVideoDecoder$VideoCodecType", codecType_); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 325 | bool success = jni->CallBooleanMethod( |
| 326 | *j_media_codec_video_decoder_, |
| 327 | j_init_decode_method_, |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 328 | j_video_codec_enum, |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 329 | codec_.width, |
| 330 | codec_.height, |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 331 | use_surface_ ? surface_texture_helper_->GetJavaSurfaceTextureHelper() |
| 332 | : nullptr); |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 333 | if (CheckException(jni) || !success) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 334 | ALOGE << "Codec initialization error - fallback to SW codec."; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 335 | sw_fallback_required_ = true; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 336 | return WEBRTC_VIDEO_CODEC_ERROR; |
| 337 | } |
| 338 | inited_ = true; |
| 339 | |
glaznev@webrtc.org | a4623d2 | 2015-02-25 00:02:50 +0000 | [diff] [blame] | 340 | switch (codecType_) { |
| 341 | case kVideoCodecVP8: |
| 342 | max_pending_frames_ = kMaxPendingFramesVp8; |
| 343 | break; |
Alex Glaznev | 69a7fd5 | 2015-11-10 10:25:40 -0800 | [diff] [blame] | 344 | case kVideoCodecVP9: |
| 345 | max_pending_frames_ = kMaxPendingFramesVp9; |
| 346 | break; |
glaznev@webrtc.org | a4623d2 | 2015-02-25 00:02:50 +0000 | [diff] [blame] | 347 | case kVideoCodecH264: |
| 348 | max_pending_frames_ = kMaxPendingFramesH264; |
| 349 | break; |
| 350 | default: |
| 351 | max_pending_frames_ = 0; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 352 | } |
| 353 | start_time_ms_ = GetCurrentTimeMs(); |
| 354 | current_frames_ = 0; |
| 355 | current_bytes_ = 0; |
| 356 | current_decoding_time_ms_ = 0; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 357 | |
| 358 | jobjectArray input_buffers = (jobjectArray)GetObjectField( |
| 359 | jni, *j_media_codec_video_decoder_, j_input_buffers_field_); |
| 360 | size_t num_input_buffers = jni->GetArrayLength(input_buffers); |
glaznev | e55c42c | 2015-10-28 10:30:32 -0700 | [diff] [blame] | 361 | ALOGD << "Maximum amount of pending frames: " << max_pending_frames_; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 362 | input_buffers_.resize(num_input_buffers); |
| 363 | for (size_t i = 0; i < num_input_buffers; ++i) { |
| 364 | input_buffers_[i] = |
| 365 | jni->NewGlobalRef(jni->GetObjectArrayElement(input_buffers, i)); |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 366 | if (CheckException(jni)) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 367 | ALOGE << "NewGlobalRef error - fallback to SW codec."; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 368 | sw_fallback_required_ = true; |
| 369 | return WEBRTC_VIDEO_CODEC_ERROR; |
| 370 | } |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 371 | } |
| 372 | |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 373 | codec_thread_->PostDelayed(kMediaCodecPollMs, this); |
| 374 | |
| 375 | return WEBRTC_VIDEO_CODEC_OK; |
| 376 | } |
| 377 | |
| 378 | int32_t MediaCodecVideoDecoder::Release() { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 379 | ALOGD << "DecoderRelease request"; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 380 | return codec_thread_->Invoke<int32_t>( |
| 381 | Bind(&MediaCodecVideoDecoder::ReleaseOnCodecThread, this)); |
| 382 | } |
| 383 | |
| 384 | int32_t MediaCodecVideoDecoder::ReleaseOnCodecThread() { |
| 385 | if (!inited_) { |
| 386 | return WEBRTC_VIDEO_CODEC_OK; |
| 387 | } |
| 388 | CheckOnCodecThread(); |
| 389 | JNIEnv* jni = AttachCurrentThreadIfNeeded(); |
glaznev | e55c42c | 2015-10-28 10:30:32 -0700 | [diff] [blame] | 390 | ALOGD << "DecoderReleaseOnCodecThread: Frames received: " << |
| 391 | frames_received_ << ". Frames decoded: " << frames_decoded_; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 392 | ScopedLocalRefFrame local_ref_frame(jni); |
| 393 | for (size_t i = 0; i < input_buffers_.size(); i++) { |
| 394 | jni->DeleteGlobalRef(input_buffers_[i]); |
| 395 | } |
| 396 | input_buffers_.clear(); |
| 397 | jni->CallVoidMethod(*j_media_codec_video_decoder_, j_release_method_); |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 398 | surface_texture_helper_ = nullptr; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 399 | inited_ = false; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 400 | rtc::MessageQueueManager::Clear(this); |
| 401 | if (CheckException(jni)) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 402 | ALOGE << "Decoder release exception"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 403 | return WEBRTC_VIDEO_CODEC_ERROR; |
| 404 | } |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 405 | ALOGD << "DecoderReleaseOnCodecThread done"; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 406 | return WEBRTC_VIDEO_CODEC_OK; |
| 407 | } |
| 408 | |
| 409 | void MediaCodecVideoDecoder::CheckOnCodecThread() { |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 410 | RTC_CHECK(codec_thread_ == ThreadManager::Instance()->CurrentThread()) |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 411 | << "Running on wrong thread!"; |
| 412 | } |
| 413 | |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 414 | int32_t MediaCodecVideoDecoder::ProcessHWErrorOnCodecThread() { |
| 415 | CheckOnCodecThread(); |
| 416 | int ret_val = ReleaseOnCodecThread(); |
| 417 | if (ret_val < 0) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 418 | ALOGE << "ProcessHWError: Release failure"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 419 | } |
| 420 | if (codecType_ == kVideoCodecH264) { |
| 421 | // For now there is no SW H.264 which can be used as fallback codec. |
| 422 | // So try to restart hw codec for now. |
| 423 | ret_val = InitDecodeOnCodecThread(); |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 424 | ALOGE << "Reset H.264 codec done. Status: " << ret_val; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 425 | if (ret_val == WEBRTC_VIDEO_CODEC_OK) { |
| 426 | // H.264 codec was succesfully reset - return regular error code. |
| 427 | return WEBRTC_VIDEO_CODEC_ERROR; |
| 428 | } else { |
| 429 | // Fail to restart H.264 codec - return error code which should stop the |
| 430 | // call. |
| 431 | return WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE; |
| 432 | } |
| 433 | } else { |
| 434 | sw_fallback_required_ = true; |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 435 | ALOGE << "Return WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 436 | return WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE; |
| 437 | } |
| 438 | } |
| 439 | |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 440 | int32_t MediaCodecVideoDecoder::Decode( |
| 441 | const EncodedImage& inputImage, |
| 442 | bool missingFrames, |
| 443 | const RTPFragmentationHeader* fragmentation, |
| 444 | const CodecSpecificInfo* codecSpecificInfo, |
| 445 | int64_t renderTimeMs) { |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 446 | if (sw_fallback_required_) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 447 | ALOGE << "Decode() - fallback to SW codec"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 448 | return WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 449 | } |
| 450 | if (callback_ == NULL) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 451 | ALOGE << "Decode() - callback_ is NULL"; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 452 | return WEBRTC_VIDEO_CODEC_UNINITIALIZED; |
| 453 | } |
| 454 | if (inputImage._buffer == NULL && inputImage._length > 0) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 455 | ALOGE << "Decode() - inputImage is incorrect"; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 456 | return WEBRTC_VIDEO_CODEC_ERR_PARAMETER; |
| 457 | } |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 458 | if (!inited_) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 459 | ALOGE << "Decode() - decoder is not initialized"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 460 | return WEBRTC_VIDEO_CODEC_UNINITIALIZED; |
| 461 | } |
| 462 | |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 463 | // Check if encoded frame dimension has changed. |
| 464 | if ((inputImage._encodedWidth * inputImage._encodedHeight > 0) && |
| 465 | (inputImage._encodedWidth != codec_.width || |
| 466 | inputImage._encodedHeight != codec_.height)) { |
| 467 | codec_.width = inputImage._encodedWidth; |
| 468 | codec_.height = inputImage._encodedHeight; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 469 | int32_t ret = InitDecode(&codec_, 1); |
| 470 | if (ret < 0) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 471 | ALOGE << "InitDecode failure: " << ret << " - fallback to SW codec"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 472 | sw_fallback_required_ = true; |
| 473 | return WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE; |
| 474 | } |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | // Always start with a complete key frame. |
| 478 | if (key_frame_required_) { |
Peter Boström | 49e196a | 2015-10-23 15:58:18 +0200 | [diff] [blame] | 479 | if (inputImage._frameType != webrtc::kVideoFrameKey) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 480 | ALOGE << "Decode() - key frame is required"; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 481 | return WEBRTC_VIDEO_CODEC_ERROR; |
| 482 | } |
| 483 | if (!inputImage._completeFrame) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 484 | ALOGE << "Decode() - complete frame is required"; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 485 | return WEBRTC_VIDEO_CODEC_ERROR; |
| 486 | } |
| 487 | key_frame_required_ = false; |
| 488 | } |
| 489 | if (inputImage._length == 0) { |
| 490 | return WEBRTC_VIDEO_CODEC_ERROR; |
| 491 | } |
| 492 | |
| 493 | return codec_thread_->Invoke<int32_t>(Bind( |
| 494 | &MediaCodecVideoDecoder::DecodeOnCodecThread, this, inputImage)); |
| 495 | } |
| 496 | |
| 497 | int32_t MediaCodecVideoDecoder::DecodeOnCodecThread( |
| 498 | const EncodedImage& inputImage) { |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 499 | CheckOnCodecThread(); |
| 500 | JNIEnv* jni = AttachCurrentThreadIfNeeded(); |
| 501 | ScopedLocalRefFrame local_ref_frame(jni); |
| 502 | |
| 503 | // Try to drain the decoder and wait until output is not too |
| 504 | // much behind the input. |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 505 | const int64 drain_start = GetCurrentTimeMs(); |
| 506 | while ((frames_received_ > frames_decoded_ + max_pending_frames_) && |
| 507 | (GetCurrentTimeMs() - drain_start) < kMediaCodecTimeoutMs) { |
glaznev@webrtc.org | a4623d2 | 2015-02-25 00:02:50 +0000 | [diff] [blame] | 508 | ALOGV("Received: %d. Decoded: %d. Wait for output...", |
| 509 | frames_received_, frames_decoded_); |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 510 | if (!DeliverPendingOutputs(jni, kMediaCodecPollMs)) { |
glaznev | e55c42c | 2015-10-28 10:30:32 -0700 | [diff] [blame] | 511 | ALOGE << "DeliverPendingOutputs error. Frames received: " << |
| 512 | frames_received_ << ". Frames decoded: " << frames_decoded_; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 513 | return ProcessHWErrorOnCodecThread(); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 514 | } |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 515 | } |
| 516 | if (frames_received_ > frames_decoded_ + max_pending_frames_) { |
| 517 | ALOGE << "Output buffer dequeue timeout. Frames received: " << |
| 518 | frames_received_ << ". Frames decoded: " << frames_decoded_; |
| 519 | return ProcessHWErrorOnCodecThread(); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | // Get input buffer. |
| 523 | int j_input_buffer_index = jni->CallIntMethod(*j_media_codec_video_decoder_, |
| 524 | j_dequeue_input_buffer_method_); |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 525 | if (CheckException(jni) || j_input_buffer_index < 0) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 526 | ALOGE << "dequeueInputBuffer error"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 527 | return ProcessHWErrorOnCodecThread(); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | // Copy encoded data to Java ByteBuffer. |
| 531 | jobject j_input_buffer = input_buffers_[j_input_buffer_index]; |
Peter Boström | 0c4e06b | 2015-10-07 12:23:21 +0200 | [diff] [blame] | 532 | uint8_t* buffer = |
| 533 | reinterpret_cast<uint8_t*>(jni->GetDirectBufferAddress(j_input_buffer)); |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 534 | RTC_CHECK(buffer) << "Indirect buffer??"; |
Peter Boström | 0c4e06b | 2015-10-07 12:23:21 +0200 | [diff] [blame] | 535 | int64_t buffer_capacity = jni->GetDirectBufferCapacity(j_input_buffer); |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 536 | if (CheckException(jni) || buffer_capacity < inputImage._length) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 537 | ALOGE << "Input frame size "<< inputImage._length << |
| 538 | " is bigger than buffer size " << buffer_capacity; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 539 | return ProcessHWErrorOnCodecThread(); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 540 | } |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 541 | jlong presentation_timestamp_us = |
| 542 | (frames_received_ * 1000000) / codec_.maxFramerate; |
glaznev | e55c42c | 2015-10-28 10:30:32 -0700 | [diff] [blame] | 543 | if (frames_decoded_ < kMaxDecodedLogFrames) { |
| 544 | ALOGD << "Decoder frame in # " << frames_received_ << ". Type: " |
| 545 | << inputImage._frameType << ". Buffer # " << |
perkj | 87d5845 | 2015-11-23 01:46:27 -0800 | [diff] [blame] | 546 | j_input_buffer_index << ". pTS: " |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 547 | << (int)(presentation_timestamp_us / 1000) |
perkj | 87d5845 | 2015-11-23 01:46:27 -0800 | [diff] [blame] | 548 | << ". TS: " << inputImage._timeStamp |
glaznev | e55c42c | 2015-10-28 10:30:32 -0700 | [diff] [blame] | 549 | << ". Size: " << inputImage._length; |
| 550 | } |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 551 | memcpy(buffer, inputImage._buffer, inputImage._length); |
| 552 | |
| 553 | // Save input image timestamps for later output. |
| 554 | frames_received_++; |
| 555 | current_bytes_ += inputImage._length; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 556 | |
| 557 | // Feed input to decoder. |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 558 | bool success = jni->CallBooleanMethod( |
| 559 | *j_media_codec_video_decoder_, |
| 560 | j_queue_input_buffer_method_, |
| 561 | j_input_buffer_index, |
| 562 | inputImage._length, |
| 563 | presentation_timestamp_us, |
| 564 | static_cast<int64_t> (inputImage._timeStamp), |
| 565 | inputImage.ntp_time_ms_); |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 566 | if (CheckException(jni) || !success) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 567 | ALOGE << "queueInputBuffer error"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 568 | return ProcessHWErrorOnCodecThread(); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | // Try to drain the decoder |
| 572 | if (!DeliverPendingOutputs(jni, 0)) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 573 | ALOGE << "DeliverPendingOutputs error"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 574 | return ProcessHWErrorOnCodecThread(); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | return WEBRTC_VIDEO_CODEC_OK; |
| 578 | } |
| 579 | |
| 580 | bool MediaCodecVideoDecoder::DeliverPendingOutputs( |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 581 | JNIEnv* jni, int dequeue_timeout_ms) { |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 582 | if (frames_received_ <= frames_decoded_) { |
| 583 | // No need to query for output buffers - decoder is drained. |
| 584 | return true; |
| 585 | } |
| 586 | // Get decoder output. |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 587 | jobject j_decoder_output_buffer = |
| 588 | jni->CallObjectMethod(*j_media_codec_video_decoder_, |
| 589 | use_surface_ ? j_dequeue_texture_buffer_method_ |
| 590 | : j_dequeue_byte_buffer_method_, |
| 591 | dequeue_timeout_ms); |
| 592 | |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 593 | if (CheckException(jni)) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 594 | ALOGE << "dequeueOutputBuffer() error"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 595 | return false; |
| 596 | } |
magjed | 44bf6f5 | 2015-10-03 02:08:00 -0700 | [diff] [blame] | 597 | if (IsNull(jni, j_decoder_output_buffer)) { |
| 598 | // No decoded frame ready. |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 599 | return true; |
| 600 | } |
| 601 | |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 602 | // Get decoded video frame properties. |
| 603 | int color_format = GetIntField(jni, *j_media_codec_video_decoder_, |
| 604 | j_color_format_field_); |
| 605 | int width = GetIntField(jni, *j_media_codec_video_decoder_, j_width_field_); |
| 606 | int height = GetIntField(jni, *j_media_codec_video_decoder_, j_height_field_); |
| 607 | int stride = GetIntField(jni, *j_media_codec_video_decoder_, j_stride_field_); |
| 608 | int slice_height = GetIntField(jni, *j_media_codec_video_decoder_, |
| 609 | j_slice_height_field_); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 610 | |
Magnus Jedvert | bbda54e | 2015-09-30 16:06:37 +0200 | [diff] [blame] | 611 | rtc::scoped_refptr<webrtc::VideoFrameBuffer> frame_buffer; |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 612 | int64_t output_timestamps_ms = 0; |
| 613 | int64_t output_ntp_timestamps_ms = 0; |
| 614 | int decode_time_ms = 0; |
| 615 | int64_t frame_delayed_ms = 0; |
Magnus Jedvert | bbda54e | 2015-09-30 16:06:37 +0200 | [diff] [blame] | 616 | if (use_surface_) { |
magjed | 44bf6f5 | 2015-10-03 02:08:00 -0700 | [diff] [blame] | 617 | // Extract data from Java DecodedTextureBuffer. |
| 618 | const int texture_id = |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 619 | GetIntField(jni, j_decoder_output_buffer, j_texture_id_field_); |
| 620 | if (texture_id != 0) { // |texture_id| == 0 represents a dropped frame. |
| 621 | const jfloatArray j_transform_matrix = |
| 622 | reinterpret_cast<jfloatArray>(GetObjectField( |
| 623 | jni, j_decoder_output_buffer, j_transform_matrix_field_)); |
| 624 | const int64_t timestamp_us = |
| 625 | GetLongField(jni, j_decoder_output_buffer, |
| 626 | j_texture_timestamp_ms_field_); |
| 627 | output_timestamps_ms = GetLongField(jni, j_decoder_output_buffer, |
| 628 | j_texture_timestamp_ms_field_); |
| 629 | output_ntp_timestamps_ms = |
| 630 | GetLongField(jni, j_decoder_output_buffer, |
| 631 | j_texture_ntp_timestamp_ms_field_); |
| 632 | decode_time_ms = GetLongField(jni, j_decoder_output_buffer, |
| 633 | j_texture_decode_time_ms_field_); |
| 634 | frame_delayed_ms = GetLongField(jni, j_decoder_output_buffer, |
| 635 | j_texture_frame_delay_ms_field_); |
| 636 | |
| 637 | // Create webrtc::VideoFrameBuffer with native texture handle. |
| 638 | frame_buffer = surface_texture_helper_->CreateTextureFrame( |
| 639 | width, height, NativeHandleImpl(jni, texture_id, j_transform_matrix)); |
| 640 | } |
Magnus Jedvert | bbda54e | 2015-09-30 16:06:37 +0200 | [diff] [blame] | 641 | } else { |
| 642 | // Extract data from Java ByteBuffer and create output yuv420 frame - |
| 643 | // for non surface decoding only. |
magjed | 44bf6f5 | 2015-10-03 02:08:00 -0700 | [diff] [blame] | 644 | const int output_buffer_index = |
| 645 | GetIntField(jni, j_decoder_output_buffer, j_info_index_field_); |
| 646 | const int output_buffer_offset = |
| 647 | GetIntField(jni, j_decoder_output_buffer, j_info_offset_field_); |
| 648 | const int output_buffer_size = |
| 649 | GetIntField(jni, j_decoder_output_buffer, j_info_size_field_); |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 650 | output_timestamps_ms = GetLongField(jni, j_decoder_output_buffer, |
| 651 | j_info_timestamp_ms_field_); |
| 652 | output_ntp_timestamps_ms = |
| 653 | GetLongField(jni, j_decoder_output_buffer, |
| 654 | j_info_ntp_timestamp_ms_field_); |
| 655 | |
| 656 | decode_time_ms = GetLongField(jni, j_decoder_output_buffer, |
| 657 | j_byte_buffer_decode_time_ms_field_); |
magjed | 44bf6f5 | 2015-10-03 02:08:00 -0700 | [diff] [blame] | 658 | |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 659 | if (output_buffer_size < width * height * 3 / 2) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 660 | ALOGE << "Insufficient output buffer size: " << output_buffer_size; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 661 | return false; |
| 662 | } |
| 663 | jobjectArray output_buffers = reinterpret_cast<jobjectArray>(GetObjectField( |
| 664 | jni, *j_media_codec_video_decoder_, j_output_buffers_field_)); |
| 665 | jobject output_buffer = |
| 666 | jni->GetObjectArrayElement(output_buffers, output_buffer_index); |
| 667 | uint8_t* payload = reinterpret_cast<uint8_t*>(jni->GetDirectBufferAddress( |
| 668 | output_buffer)); |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 669 | if (CheckException(jni)) { |
| 670 | return false; |
| 671 | } |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 672 | payload += output_buffer_offset; |
| 673 | |
| 674 | // Create yuv420 frame. |
Magnus Jedvert | bbda54e | 2015-09-30 16:06:37 +0200 | [diff] [blame] | 675 | frame_buffer = decoded_frame_pool_.CreateBuffer(width, height); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 676 | if (color_format == COLOR_FormatYUV420Planar) { |
Magnus Jedvert | bbda54e | 2015-09-30 16:06:37 +0200 | [diff] [blame] | 677 | RTC_CHECK_EQ(0, stride % 2); |
| 678 | RTC_CHECK_EQ(0, slice_height % 2); |
| 679 | const int uv_stride = stride / 2; |
| 680 | const int u_slice_height = slice_height / 2; |
| 681 | const uint8_t* y_ptr = payload; |
| 682 | const uint8_t* u_ptr = y_ptr + stride * slice_height; |
| 683 | const uint8_t* v_ptr = u_ptr + uv_stride * u_slice_height; |
| 684 | libyuv::I420Copy(y_ptr, stride, |
| 685 | u_ptr, uv_stride, |
| 686 | v_ptr, uv_stride, |
| 687 | frame_buffer->MutableData(webrtc::kYPlane), |
| 688 | frame_buffer->stride(webrtc::kYPlane), |
| 689 | frame_buffer->MutableData(webrtc::kUPlane), |
| 690 | frame_buffer->stride(webrtc::kUPlane), |
| 691 | frame_buffer->MutableData(webrtc::kVPlane), |
| 692 | frame_buffer->stride(webrtc::kVPlane), |
| 693 | width, height); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 694 | } else { |
| 695 | // All other supported formats are nv12. |
Magnus Jedvert | bbda54e | 2015-09-30 16:06:37 +0200 | [diff] [blame] | 696 | const uint8_t* y_ptr = payload; |
| 697 | const uint8_t* uv_ptr = y_ptr + stride * slice_height; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 698 | libyuv::NV12ToI420( |
Magnus Jedvert | bbda54e | 2015-09-30 16:06:37 +0200 | [diff] [blame] | 699 | y_ptr, stride, |
| 700 | uv_ptr, stride, |
| 701 | frame_buffer->MutableData(webrtc::kYPlane), |
| 702 | frame_buffer->stride(webrtc::kYPlane), |
| 703 | frame_buffer->MutableData(webrtc::kUPlane), |
| 704 | frame_buffer->stride(webrtc::kUPlane), |
| 705 | frame_buffer->MutableData(webrtc::kVPlane), |
| 706 | frame_buffer->stride(webrtc::kVPlane), |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 707 | width, height); |
| 708 | } |
magjed | 44bf6f5 | 2015-10-03 02:08:00 -0700 | [diff] [blame] | 709 | // Return output byte buffer back to codec. |
| 710 | jni->CallVoidMethod( |
| 711 | *j_media_codec_video_decoder_, |
| 712 | j_return_decoded_byte_buffer_method_, |
| 713 | output_buffer_index); |
| 714 | if (CheckException(jni)) { |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 715 | ALOGE << "returnDecodedOutputBuffer error"; |
magjed | 44bf6f5 | 2015-10-03 02:08:00 -0700 | [diff] [blame] | 716 | return false; |
| 717 | } |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 718 | } |
Magnus Jedvert | bbda54e | 2015-09-30 16:06:37 +0200 | [diff] [blame] | 719 | VideoFrame decoded_frame(frame_buffer, 0, 0, webrtc::kVideoRotation_0); |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 720 | decoded_frame.set_timestamp(output_timestamps_ms); |
| 721 | decoded_frame.set_ntp_time_ms(output_ntp_timestamps_ms); |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 722 | |
glaznev | e55c42c | 2015-10-28 10:30:32 -0700 | [diff] [blame] | 723 | if (frames_decoded_ < kMaxDecodedLogFrames) { |
| 724 | ALOGD << "Decoder frame out # " << frames_decoded_ << ". " << width << |
| 725 | " x " << height << ". " << stride << " x " << slice_height << |
perkj | 87d5845 | 2015-11-23 01:46:27 -0800 | [diff] [blame] | 726 | ". Color: " << color_format << ". TS:" << decoded_frame.timestamp() << |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 727 | ". DecTime: " << (int)decode_time_ms << |
| 728 | ". DelayTime: " << (int)frame_delayed_ms; |
glaznev | e55c42c | 2015-10-28 10:30:32 -0700 | [diff] [blame] | 729 | } |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 730 | |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 731 | // Calculate and print decoding statistics - every 3 seconds. |
| 732 | frames_decoded_++; |
| 733 | current_frames_++; |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 734 | current_decoding_time_ms_ += decode_time_ms; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 735 | int statistic_time_ms = GetCurrentTimeMs() - start_time_ms_; |
| 736 | if (statistic_time_ms >= kMediaCodecStatisticsIntervalMs && |
| 737 | current_frames_ > 0) { |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 738 | ALOGD << "Decoded frames: " << frames_decoded_ << ". Received frames: " |
| 739 | << frames_received_ << ". Bitrate: " << |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 740 | (current_bytes_ * 8 / statistic_time_ms) << " kbps, fps: " << |
| 741 | ((current_frames_ * 1000 + statistic_time_ms / 2) / statistic_time_ms) |
| 742 | << ". decTime: " << (current_decoding_time_ms_ / current_frames_) << |
| 743 | " for last " << statistic_time_ms << " ms."; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 744 | start_time_ms_ = GetCurrentTimeMs(); |
| 745 | current_frames_ = 0; |
| 746 | current_bytes_ = 0; |
| 747 | current_decoding_time_ms_ = 0; |
| 748 | } |
| 749 | |
Per | 488e75f | 2015-11-19 10:43:36 +0100 | [diff] [blame] | 750 | // |.IsZeroSize())| returns true when a frame has been dropped. |
| 751 | if (!decoded_frame.IsZeroSize()) { |
| 752 | // Callback - output decoded frame. |
| 753 | const int32_t callback_status = |
| 754 | callback_->Decoded(decoded_frame, decode_time_ms); |
| 755 | if (callback_status > 0) { |
| 756 | ALOGE << "callback error"; |
| 757 | } |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 758 | } |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 759 | return true; |
| 760 | } |
| 761 | |
| 762 | int32_t MediaCodecVideoDecoder::RegisterDecodeCompleteCallback( |
| 763 | DecodedImageCallback* callback) { |
| 764 | callback_ = callback; |
| 765 | return WEBRTC_VIDEO_CODEC_OK; |
| 766 | } |
| 767 | |
| 768 | int32_t MediaCodecVideoDecoder::Reset() { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 769 | ALOGD << "DecoderReset"; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 770 | if (!inited_) { |
| 771 | return WEBRTC_VIDEO_CODEC_UNINITIALIZED; |
| 772 | } |
| 773 | return InitDecode(&codec_, 1); |
| 774 | } |
| 775 | |
| 776 | void MediaCodecVideoDecoder::OnMessage(rtc::Message* msg) { |
| 777 | JNIEnv* jni = AttachCurrentThreadIfNeeded(); |
| 778 | ScopedLocalRefFrame local_ref_frame(jni); |
| 779 | if (!inited_) { |
| 780 | return; |
| 781 | } |
| 782 | // We only ever send one message to |this| directly (not through a Bind()'d |
| 783 | // functor), so expect no ID/data. |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 784 | RTC_CHECK(!msg->message_id) << "Unexpected message!"; |
| 785 | RTC_CHECK(!msg->pdata) << "Unexpected message!"; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 786 | CheckOnCodecThread(); |
| 787 | |
| 788 | if (!DeliverPendingOutputs(jni, 0)) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 789 | ALOGE << "OnMessage: DeliverPendingOutputs error"; |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 790 | ProcessHWErrorOnCodecThread(); |
| 791 | return; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 792 | } |
| 793 | codec_thread_->PostDelayed(kMediaCodecPollMs, this); |
| 794 | } |
| 795 | |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 796 | MediaCodecVideoDecoderFactory::MediaCodecVideoDecoderFactory() : |
| 797 | render_egl_context_(NULL) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 798 | ALOGD << "MediaCodecVideoDecoderFactory ctor"; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 799 | JNIEnv* jni = AttachCurrentThreadIfNeeded(); |
| 800 | ScopedLocalRefFrame local_ref_frame(jni); |
| 801 | jclass j_decoder_class = FindClass(jni, "org/webrtc/MediaCodecVideoDecoder"); |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 802 | supported_codec_types_.clear(); |
| 803 | |
| 804 | bool is_vp8_hw_supported = jni->CallStaticBooleanMethod( |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 805 | j_decoder_class, |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 806 | GetStaticMethodID(jni, j_decoder_class, "isVp8HwSupported", "()Z")); |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 807 | if (CheckException(jni)) { |
| 808 | is_vp8_hw_supported = false; |
| 809 | } |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 810 | if (is_vp8_hw_supported) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 811 | ALOGD << "VP8 HW Decoder supported."; |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 812 | supported_codec_types_.push_back(kVideoCodecVP8); |
| 813 | } |
| 814 | |
Alex Glaznev | 69a7fd5 | 2015-11-10 10:25:40 -0800 | [diff] [blame] | 815 | bool is_vp9_hw_supported = jni->CallStaticBooleanMethod( |
| 816 | j_decoder_class, |
| 817 | GetStaticMethodID(jni, j_decoder_class, "isVp9HwSupported", "()Z")); |
| 818 | if (CheckException(jni)) { |
| 819 | is_vp9_hw_supported = false; |
| 820 | } |
| 821 | if (is_vp9_hw_supported) { |
| 822 | ALOGD << "VP9 HW Decoder supported."; |
| 823 | supported_codec_types_.push_back(kVideoCodecVP9); |
| 824 | } |
| 825 | |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 826 | bool is_h264_hw_supported = jni->CallStaticBooleanMethod( |
| 827 | j_decoder_class, |
| 828 | GetStaticMethodID(jni, j_decoder_class, "isH264HwSupported", "()Z")); |
Alex Glaznev | 782671f | 2015-06-12 16:40:44 -0700 | [diff] [blame] | 829 | if (CheckException(jni)) { |
| 830 | is_h264_hw_supported = false; |
| 831 | } |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 832 | if (is_h264_hw_supported) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 833 | ALOGD << "H264 HW Decoder supported."; |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 834 | supported_codec_types_.push_back(kVideoCodecH264); |
| 835 | } |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 836 | } |
| 837 | |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 838 | MediaCodecVideoDecoderFactory::~MediaCodecVideoDecoderFactory() { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 839 | ALOGD << "MediaCodecVideoDecoderFactory dtor"; |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 840 | if (render_egl_context_) { |
| 841 | JNIEnv* jni = AttachCurrentThreadIfNeeded(); |
| 842 | jni->DeleteGlobalRef(render_egl_context_); |
| 843 | render_egl_context_ = NULL; |
| 844 | } |
| 845 | } |
| 846 | |
| 847 | void MediaCodecVideoDecoderFactory::SetEGLContext( |
| 848 | JNIEnv* jni, jobject render_egl_context) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 849 | ALOGD << "MediaCodecVideoDecoderFactory::SetEGLContext"; |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 850 | if (render_egl_context_) { |
| 851 | jni->DeleteGlobalRef(render_egl_context_); |
| 852 | render_egl_context_ = NULL; |
| 853 | } |
| 854 | if (!IsNull(jni, render_egl_context)) { |
| 855 | render_egl_context_ = jni->NewGlobalRef(render_egl_context); |
| 856 | if (CheckException(jni)) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 857 | ALOGE << "error calling NewGlobalRef for EGL Context."; |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 858 | render_egl_context_ = NULL; |
| 859 | } else { |
magjed | 8c425aa | 2015-10-22 16:52:39 -0700 | [diff] [blame] | 860 | jclass j_egl_context_class = |
perkj | 40455d6 | 2015-12-02 01:07:18 -0800 | [diff] [blame] | 861 | FindClass(jni, "org/webrtc/EglBase$Context"); |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 862 | if (!jni->IsInstanceOf(render_egl_context_, j_egl_context_class)) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 863 | ALOGE << "Wrong EGL Context."; |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 864 | jni->DeleteGlobalRef(render_egl_context_); |
| 865 | render_egl_context_ = NULL; |
| 866 | } |
| 867 | } |
| 868 | } |
| 869 | if (render_egl_context_ == NULL) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 870 | ALOGW << "NULL VideoDecoder EGL context - HW surface decoding is disabled."; |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 871 | } |
| 872 | } |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 873 | |
| 874 | webrtc::VideoDecoder* MediaCodecVideoDecoderFactory::CreateVideoDecoder( |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 875 | VideoCodecType type) { |
| 876 | if (supported_codec_types_.empty()) { |
Alex Glaznev | ad948c4 | 2015-11-18 13:06:42 -0800 | [diff] [blame] | 877 | ALOGW << "No HW video decoder for type " << (int)type; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 878 | return NULL; |
| 879 | } |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 880 | for (VideoCodecType codec_type : supported_codec_types_) { |
| 881 | if (codec_type == type) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 882 | ALOGD << "Create HW video decoder for type " << (int)type; |
Alex Glaznev | 4d2f4d1 | 2015-09-01 15:04:13 -0700 | [diff] [blame] | 883 | return new MediaCodecVideoDecoder( |
| 884 | AttachCurrentThreadIfNeeded(), type, render_egl_context_); |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 885 | } |
| 886 | } |
Alex Glaznev | ad948c4 | 2015-11-18 13:06:42 -0800 | [diff] [blame] | 887 | ALOGW << "Can not find HW video decoder for type " << (int)type; |
glaznev@webrtc.org | b28474c | 2015-02-23 17:44:27 +0000 | [diff] [blame] | 888 | return NULL; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 889 | } |
| 890 | |
| 891 | void MediaCodecVideoDecoderFactory::DestroyVideoDecoder( |
| 892 | webrtc::VideoDecoder* decoder) { |
Alex Glaznev | fddf6e5 | 2015-10-07 16:51:02 -0700 | [diff] [blame] | 893 | ALOGD << "Destroy video decoder."; |
glaznev@webrtc.org | 18c9247 | 2015-02-18 18:42:55 +0000 | [diff] [blame] | 894 | delete decoder; |
| 895 | } |
| 896 | |
| 897 | } // namespace webrtc_jni |
| 898 | |