Chromium Code Reviews| Index: webrtc/sdk/android/src/jni/videodecoderwrapper.cc |
| diff --git a/webrtc/sdk/android/src/jni/videodecoderwrapper.cc b/webrtc/sdk/android/src/jni/videodecoderwrapper.cc |
| index b822170f1f28561ba104d8e0b017791083fca6e6..b043682a9b941e1c9240e5c9b0b65d16a408e678 100644 |
| --- a/webrtc/sdk/android/src/jni/videodecoderwrapper.cc |
| +++ b/webrtc/sdk/android/src/jni/videodecoderwrapper.cc |
| @@ -12,6 +12,8 @@ |
| #include "webrtc/api/video/video_frame.h" |
| #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
| +#include "webrtc/modules/video_coding/utility/vp8_header_parser.h" |
| +#include "webrtc/modules/video_coding/utility/vp9_uncompressed_header_parser.h" |
| #include "webrtc/rtc_base/logging.h" |
| #include "webrtc/sdk/android/src/jni/classreferenceholder.h" |
| @@ -70,6 +72,7 @@ VideoDecoderWrapper::VideoDecoderWrapper(JNIEnv* jni, jobject decoder) |
| int_value_method_ = jni->GetMethodID(*integer_class_, "intValue", "()I"); |
| initialized_ = false; |
| + qp_parsing_enabled_ = true; |
|
kthelgason
2017/08/16 13:57:58
It's quite unclear what this depends on, can we tr
sakal
2017/08/16 14:47:07
I added comments.
|
| } |
| int32_t VideoDecoderWrapper::InitDecode( |
| @@ -100,6 +103,9 @@ int32_t VideoDecoderWrapper::InitDecodeInternal(JNIEnv* jni) { |
| if (jni->CallIntMethod(ret, get_number_method_) == WEBRTC_VIDEO_CODEC_OK) { |
| initialized_ = true; |
| } |
| + |
| + qp_parsing_enabled_ = true; |
| + |
| return HandleReturnCode(jni, ret); |
| } |
| @@ -120,6 +126,8 @@ int32_t VideoDecoderWrapper::Decode( |
| FrameExtraInfo frame_extra_info; |
| frame_extra_info.capture_time_ms = input_image.capture_time_ms_; |
| frame_extra_info.timestamp_rtp = input_image._timeStamp; |
| + frame_extra_info.qp = |
| + qp_parsing_enabled_ ? ParseQP(input_image) : rtc::Optional<uint8_t>(); |
| frame_extra_infos_.push_back(frame_extra_info); |
| jobject jinput_image = |
| @@ -189,9 +197,13 @@ void VideoDecoderWrapper::OnDecodedFrame(JNIEnv* jni, |
| rtc::Optional<uint8_t> qp; |
| if (jqp != nullptr) { |
| qp = rtc::Optional<uint8_t>(jni->CallIntMethod(jqp, int_value_method_)); |
| + qp_parsing_enabled_ = false; |
| + } else { |
| + qp = frame_extra_info.qp; |
| + qp_parsing_enabled_ = true; |
| } |
| - callback_->Decoded(frame, decoding_time_ms, rtc::Optional<uint8_t>()); |
| + callback_->Decoded(frame, decoding_time_ms, qp); |
| } |
| jobject VideoDecoderWrapper::ConvertEncodedImageToJavaEncodedImage( |
| @@ -242,6 +254,45 @@ int32_t VideoDecoderWrapper::HandleReturnCode(JNIEnv* jni, jobject code) { |
| } |
| } |
| +rtc::Optional<uint8_t> VideoDecoderWrapper::ParseQP( |
| + const webrtc::EncodedImage& input_image) { |
| + if (input_image.qp_ != -1) { |
| + return rtc::Optional<uint8_t>(input_image.qp_); |
| + } |
| + |
| + rtc::Optional<uint8_t> qp; |
| + switch (codec_settings_.codecType) { |
| + case webrtc::kVideoCodecVP8: { |
| + int qp_int; |
| + if (webrtc::vp8::GetQp(input_image._buffer, input_image._length, |
| + &qp_int)) { |
| + qp = rtc::Optional<uint8_t>(qp_int); |
| + } |
| + break; |
| + } |
| + case webrtc::kVideoCodecVP9: { |
| + int qp_int; |
| + if (webrtc::vp9::GetQp(input_image._buffer, input_image._length, |
| + &qp_int)) { |
| + qp = rtc::Optional<uint8_t>(qp_int); |
| + } |
| + break; |
| + } |
| + case webrtc::kVideoCodecH264: { |
| + h264_bitstream_parser_.ParseBitstream(input_image._buffer, |
| + input_image._length); |
| + int qp_int; |
| + if (h264_bitstream_parser_.GetLastSliceQp(&qp_int)) { |
| + qp = rtc::Optional<uint8_t>(qp_int); |
| + } |
| + break; |
| + } |
| + default: |
| + break; // Default is to not provide QP. |
| + } |
| + return qp; |
| +} |
| + |
| JOW(void, VideoDecoderWrapperCallback_nativeOnDecodedFrame) |
| (JNIEnv* jni, |
| jclass, |