summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/rtsp/ARTPSource.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/ARTPSource.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/ARTPSource.cpp')
-rw-r--r--media/libstagefright/rtsp/ARTPSource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/rtsp/ARTPSource.cpp b/media/libstagefright/rtsp/ARTPSource.cpp
index 2518264..5aae4e7 100644
--- a/media/libstagefright/rtsp/ARTPSource.cpp
+++ b/media/libstagefright/rtsp/ARTPSource.cpp
@@ -57,7 +57,7 @@ ARTPSource::ARTPSource(
mAssembler = new AAVCAssembler(notify);
mIssueFIRRequests = true;
} else if (!strncmp(desc.c_str(), "MP4A-LATM/", 10)) {
- mAssembler = new AMPEG4AudioAssembler(notify);
+ mAssembler = new AMPEG4AudioAssembler(notify, params);
} else if (!strncmp(desc.c_str(), "H263-1998/", 10)
|| !strncmp(desc.c_str(), "H263-2000/", 10)) {
mAssembler = new AH263Assembler(notify);