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

Issue 2649133005: Add QP sum stats for received streams. (Closed)

Created:
3 years, 11 months ago by sakal
Modified:
3 years, 10 months ago
CC:
webrtc-reviews_webrtc.org, interface-changes_webrtc.org, video-team_agora.io, yujie_mao (webrtc), zhengzhonghou_agora.io, stefan-webrtc, tterriberry_mozilla.com, qiang.lu, niklas.enbom, peah-webrtc, the sun, mflodman
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

Add QP sum stats for received streams. This is not implemented yet in any of the decoders. BUG=webrtc:6541 Review-Url: https://codereview.webrtc.org/2649133005 Cr-Commit-Position: refs/heads/master@{#16475} Committed: https://chromium.googlesource.com/external/webrtc/+/ff0e72fd165facac27f0313aa178648782e63bc4

Patch Set 1 #

Patch Set 2 : Add DecodedWithQp to interface. #

Total comments: 17

Patch Set 3 : Changes according to hbos's comments. #1 #

Total comments: 7

Patch Set 4 : Changes according to comments. #

Patch Set 5 : Change to int32_t for decode_time_ms. #

Total comments: 1

Patch Set 6 : Fix lint warning. #

Total comments: 6

Patch Set 7 : Changes according to hbos's comments. #2 #

Patch Set 8 : Fix error. #

Total comments: 2

Patch Set 9 : Remove return value from the new Decoded method since we always returned OK. #

Patch Set 10 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+130 lines, -36 lines) Patch
M webrtc/media/base/mediachannel.h View 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/media/engine/videodecodersoftwarefallbackwrapper_unittest.cc View 1 2 3 4 5 6 7 8 1 chunk +5 lines, -0 lines 0 comments Download
M webrtc/media/engine/webrtcvideoengine2.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/media/engine/webrtcvideoengine2_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/codecs/test/videoprocessor.h View 1 2 3 4 5 6 7 8 1 chunk +5 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h View 1 2 3 4 5 6 7 8 1 chunk +5 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc View 1 2 3 4 5 6 7 8 1 chunk +5 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/generic_decoder.h View 1 2 3 4 5 6 7 8 1 chunk +7 lines, -5 lines 0 comments Download
M webrtc/modules/video_coding/generic_decoder.cc View 1 2 3 4 5 6 7 8 9 3 chunks +15 lines, -6 lines 0 comments Download
M webrtc/modules/video_coding/include/mock/mock_video_codec_interface.h View 1 2 3 4 5 6 7 8 1 chunk +4 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/include/video_coding_defines.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/video_coding/test/test_util.h View 1 2 3 4 5 6 2 chunks +5 lines, -12 lines 0 comments Download
M webrtc/modules/video_coding/test/test_util.cc View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/pc/statscollector.cc View 1 chunk +3 lines, -0 lines 0 comments Download
M webrtc/pc/statscollector_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -0 lines 0 comments Download
M webrtc/video/receive_statistics_proxy.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M webrtc/video/receive_statistics_proxy.cc View 1 2 3 4 5 6 7 8 9 1 chunk +16 lines, -1 line 0 comments Download
M webrtc/video/receive_statistics_proxy_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +34 lines, -1 line 0 comments Download
M webrtc/video/video_receive_stream.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -4 lines 0 comments Download
M webrtc/video/video_stream_decoder.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/video/video_stream_decoder.cc View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -1 line 0 comments Download
M webrtc/video_decoder.h View 1 2 3 4 5 6 7 8 1 chunk +8 lines, -1 line 0 comments Download
M webrtc/video_receive_stream.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 66 (37 generated)
sakal
PTAL
3 years, 11 months ago (2017-01-24 15:17:53 UTC) #10
hbos
https://codereview.webrtc.org/2649133005/diff/20001/webrtc/modules/video_coding/generic_decoder.h File webrtc/modules/video_coding/generic_decoder.h (right): https://codereview.webrtc.org/2649133005/diff/20001/webrtc/modules/video_coding/generic_decoder.h#newcode47 webrtc/modules/video_coding/generic_decoder.h:47: int qp); nit: Can all uses of virtual be ...
3 years, 10 months ago (2017-01-25 11:31:13 UTC) #11
sakal
https://codereview.webrtc.org/2649133005/diff/20001/webrtc/modules/video_coding/generic_decoder.h File webrtc/modules/video_coding/generic_decoder.h (right): https://codereview.webrtc.org/2649133005/diff/20001/webrtc/modules/video_coding/generic_decoder.h#newcode47 webrtc/modules/video_coding/generic_decoder.h:47: int qp); On 2017/01/25 11:31:12, hbos wrote: > nit: ...
3 years, 10 months ago (2017-01-25 12:39:34 UTC) #12
sprang_webrtc
https://codereview.webrtc.org/2649133005/diff/40001/webrtc/video/receive_statistics_proxy.cc File webrtc/video/receive_statistics_proxy.cc (right): https://codereview.webrtc.org/2649133005/diff/40001/webrtc/video/receive_statistics_proxy.cc#newcode403 webrtc/video/receive_statistics_proxy.cc:403: if (qp != -1) { Maybe we should dcheck ...
3 years, 10 months ago (2017-01-25 15:25:41 UTC) #17
sakal
https://codereview.webrtc.org/2649133005/diff/40001/webrtc/video/receive_statistics_proxy.cc File webrtc/video/receive_statistics_proxy.cc (right): https://codereview.webrtc.org/2649133005/diff/40001/webrtc/video/receive_statistics_proxy.cc#newcode403 webrtc/video/receive_statistics_proxy.cc:403: if (qp != -1) { On 2017/01/25 15:25:41, språng ...
3 years, 10 months ago (2017-01-25 15:34:45 UTC) #18
sprang_webrtc
https://codereview.webrtc.org/2649133005/diff/20001/webrtc/modules/video_coding/include/video_coding_defines.h File webrtc/modules/video_coding/include/video_coding_defines.h (right): https://codereview.webrtc.org/2649133005/diff/20001/webrtc/modules/video_coding/include/video_coding_defines.h#newcode66 webrtc/modules/video_coding/include/video_coding_defines.h:66: virtual int32_t FrameToRender(VideoFrame& videoFrame, int qp) = 0; // ...
3 years, 10 months ago (2017-01-25 15:59:15 UTC) #19
sakal
I switched to rtc::Optional<uint8_t> for qp. It is the smallest suitable type since for VP9 ...
3 years, 10 months ago (2017-01-26 09:33:31 UTC) #20
hta-webrtc
lgtm https://codereview.webrtc.org/2649133005/diff/80001/webrtc/media/engine/webrtcvideoengine2_unittest.cc File webrtc/media/engine/webrtcvideoengine2_unittest.cc (right): https://codereview.webrtc.org/2649133005/diff/80001/webrtc/media/engine/webrtcvideoengine2_unittest.cc#newcode3348 webrtc/media/engine/webrtcvideoengine2_unittest.cc:3348: EXPECT_EQ(stats.qp_sum, info.receivers[0].qp_sum); Will this comparision be correct? If ...
3 years, 10 months ago (2017-01-26 12:54:52 UTC) #21
sakal
On 2017/01/26 12:54:52, hta-webrtc wrote: > lgtm > > https://codereview.webrtc.org/2649133005/diff/80001/webrtc/media/engine/webrtcvideoengine2_unittest.cc > File webrtc/media/engine/webrtcvideoengine2_unittest.cc (right): > ...
3 years, 10 months ago (2017-01-26 13:31:32 UTC) #22
hbos
I have a question about moving the OnDecodedFrame call to the FrameToRender. https://codereview.webrtc.org/2649133005/diff/20001/webrtc/modules/video_coding/test/test_util.h File webrtc/modules/video_coding/test/test_util.h ...
3 years, 10 months ago (2017-01-26 15:04:45 UTC) #23
sakal
https://codereview.webrtc.org/2649133005/diff/20001/webrtc/modules/video_coding/test/test_util.h File webrtc/modules/video_coding/test/test_util.h (right): https://codereview.webrtc.org/2649133005/diff/20001/webrtc/modules/video_coding/test/test_util.h#newcode61 webrtc/modules/video_coding/test/test_util.h:61: int qp); // NOLINT On 2017/01/26 15:04:45, hbos wrote: ...
3 years, 10 months ago (2017-01-26 15:46:52 UTC) #24
sprang_webrtc
> I used int32_t for decode_time_ms because that is what is used by > StopDecodeTimer ...
3 years, 10 months ago (2017-01-26 15:48:03 UTC) #27
hbos
lgtm https://codereview.webrtc.org/2649133005/diff/100001/webrtc/video/video_stream_decoder.cc File webrtc/video/video_stream_decoder.cc (right): https://codereview.webrtc.org/2649133005/diff/100001/webrtc/video/video_stream_decoder.cc#newcode87 webrtc/video/video_stream_decoder.cc:87: receive_stats_callback_->OnDecodedFrame(qp); On 2017/01/26 15:48:03, språng wrote: > On ...
3 years, 10 months ago (2017-01-26 15:48:57 UTC) #28
perkj_webrtc
Replaced my self with mflodman.
3 years, 10 months ago (2017-01-29 10:25:02 UTC) #37
sakal
On 2017/01/26 15:48:03, språng wrote: > > I used int32_t for decode_time_ms because that is ...
3 years, 10 months ago (2017-01-30 12:33:25 UTC) #39
sprang_webrtc
On 2017/01/30 12:33:25, sakal wrote: > On 2017/01/26 15:48:03, språng wrote: > > > I ...
3 years, 10 months ago (2017-01-30 13:35:26 UTC) #40
hbos
Ping! When this lands I'll add qpSum for the inbound case to the new getStats ...
3 years, 10 months ago (2017-02-02 12:36:05 UTC) #41
sprang_webrtc
mflodman will be OOO, so replacing with magjed which should be enough for owners coverage. ...
3 years, 10 months ago (2017-02-02 12:51:43 UTC) #43
magjed_webrtc
lgtm
3 years, 10 months ago (2017-02-02 15:54:07 UTC) #44
sakal
Stefan could take a look at the interface changes: webrtc/video_decoder.h webrtc/video_receive_stream.h
3 years, 10 months ago (2017-02-03 08:19:41 UTC) #46
sakal
ping
3 years, 10 months ago (2017-02-07 09:41:29 UTC) #47
stefan-webrtc
lg, but one comment that may be worth addressing. https://codereview.webrtc.org/2649133005/diff/140001/webrtc/video_decoder.h File webrtc/video_decoder.h (right): https://codereview.webrtc.org/2649133005/diff/140001/webrtc/video_decoder.h#newcode44 webrtc/video_decoder.h:44: ...
3 years, 10 months ago (2017-02-07 09:56:52 UTC) #48
sakal
PTAL https://codereview.webrtc.org/2649133005/diff/140001/webrtc/video_decoder.h File webrtc/video_decoder.h (right): https://codereview.webrtc.org/2649133005/diff/140001/webrtc/video_decoder.h#newcode44 webrtc/video_decoder.h:44: virtual int32_t Decoded(VideoFrame& decodedImage, On 2017/02/07 09:56:51, stefan-webrtc ...
3 years, 10 months ago (2017-02-07 12:28:18 UTC) #51
stefan-webrtc
lgtm
3 years, 10 months ago (2017-02-07 13:16:01 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2649133005/160001
3 years, 10 months ago (2017-02-07 14:03:28 UTC) #57
commit-bot: I haz the power
Failed to apply patch for webrtc/modules/video_coding/generic_decoder.cc: While running git apply --index -p1; error: patch failed: ...
3 years, 10 months ago (2017-02-07 14:06:30 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2649133005/180001
3 years, 10 months ago (2017-02-07 14:20:17 UTC) #62
commit-bot: I haz the power
Committed patchset #10 (id:180001) as https://chromium.googlesource.com/external/webrtc/+/ff0e72fd165facac27f0313aa178648782e63bc4
3 years, 10 months ago (2017-02-07 15:15:23 UTC) #65
skvlad
3 years, 10 months ago (2017-02-07 18:46:01 UTC) #66
Message was sent while issue was closed.
A revert of this CL (patchset #10 id:180001) has been created in
https://codereview.webrtc.org/2680893002/ by skvlad@webrtc.org.

The reason for reverting is: Breaks downstream build..

Powered by Google App Engine
This is Rietveld 408576698