summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/wifi-display/rtp/RTPSender.cpp
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2013-04-23 13:47:46 -0700
committerAndreas Huber <andih@google.com>2013-04-23 13:47:46 -0700
commit3a9682a86ead84d6f60d3f3aa01b2b4d34af983d (patch)
tree199ffdcceb6e85a62db358857a98da303af83636 /media/libstagefright/wifi-display/rtp/RTPSender.cpp
parent4613b7e38b1830535cbf00e962afdfa5fe1308ba (diff)
downloadframeworks_av-3a9682a86ead84d6f60d3f3aa01b2b4d34af983d.zip
frameworks_av-3a9682a86ead84d6f60d3f3aa01b2b4d34af983d.tar.gz
frameworks_av-3a9682a86ead84d6f60d3f3aa01b2b4d34af983d.tar.bz2
Remove all traces of wifi display sink implementation and supporting code.
Change-Id: I64b681b7e3df1ef0dd80c0d261cacae293d5e684 related-to-bug: 8698812
Diffstat (limited to 'media/libstagefright/wifi-display/rtp/RTPSender.cpp')
-rw-r--r--media/libstagefright/wifi-display/rtp/RTPSender.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/media/libstagefright/wifi-display/rtp/RTPSender.cpp b/media/libstagefright/wifi-display/rtp/RTPSender.cpp
index 6bbe650..095fd97 100644
--- a/media/libstagefright/wifi-display/rtp/RTPSender.cpp
+++ b/media/libstagefright/wifi-display/rtp/RTPSender.cpp
@@ -767,17 +767,6 @@ status_t RTPSender::parseTSFB(const uint8_t *data, size_t size) {
}
status_t RTPSender::parseAPP(const uint8_t *data, size_t size) {
- if (!memcmp("late", &data[8], 4)) {
- int64_t avgLatencyUs = (int64_t)U64_AT(&data[12]);
- int64_t maxLatencyUs = (int64_t)U64_AT(&data[20]);
-
- sp<AMessage> notify = mNotify->dup();
- notify->setInt32("what", kWhatInformSender);
- notify->setInt64("avgLatencyUs", avgLatencyUs);
- notify->setInt64("maxLatencyUs", maxLatencyUs);
- notify->post();
- }
-
return OK;
}