summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/rtsp/ASessionDescription.cpp
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2010-10-27 13:59:59 -0700
committerAndreas Huber <andih@google.com>2010-10-27 14:33:18 -0700
commitfc9ac988e08a8b4c42e58999300265989f26f24c (patch)
tree14d7a1cc8e79eba57418b3b54f834f34f881d5ff /media/libstagefright/rtsp/ASessionDescription.cpp
parentc8b3ca3caf7edc08d652937d29724ae7a496655a (diff)
downloadframeworks_av-fc9ac988e08a8b4c42e58999300265989f26f24c.zip
frameworks_av-fc9ac988e08a8b4c42e58999300265989f26f24c.tar.gz
frameworks_av-fc9ac988e08a8b4c42e58999300265989f26f24c.tar.bz2
Better support for MP4A-LATM RTP disassembly. This used to fail if mNumSubFrames > 1 and the sub frames did not align with RTP packet boundaries.
Change-Id: I20e3b86f52b7f0f41663ffe8bc1f4db92280e884
Diffstat (limited to 'media/libstagefright/rtsp/ASessionDescription.cpp')
-rw-r--r--media/libstagefright/rtsp/ASessionDescription.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/media/libstagefright/rtsp/ASessionDescription.cpp b/media/libstagefright/rtsp/ASessionDescription.cpp
index 880aa85..547fbab 100644
--- a/media/libstagefright/rtsp/ASessionDescription.cpp
+++ b/media/libstagefright/rtsp/ASessionDescription.cpp
@@ -53,7 +53,6 @@ bool ASessionDescription::parse(const void *data, size_t size) {
mFormats.push(AString("[root]"));
AString desc((const char *)data, size);
- LOGI("%s", desc.c_str());
size_t i = 0;
for (;;) {
@@ -76,6 +75,8 @@ bool ASessionDescription::parse(const void *data, size_t size) {
return false;
}
+ LOGI("%s", line.c_str());
+
switch (line.c_str()[0]) {
case 'v':
{