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