summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/httplive
diff options
context:
space:
mode:
authorRobert Shih <robertshih@google.com>2014-03-10 17:27:15 -0700
committerRobert Shih <robertshih@google.com>2014-03-10 17:52:50 -0700
commite4f25c280a8f1655c31a745978e0fcbc61f91dee (patch)
treedaa0dd0cacb6995970b69cea874c57fd51bd5c03 /media/libstagefright/httplive
parent1ac1638077277de52d1dd4c54db71e67753f1960 (diff)
downloadframeworks_av-e4f25c280a8f1655c31a745978e0fcbc61f91dee.zip
frameworks_av-e4f25c280a8f1655c31a745978e0fcbc61f91dee.tar.gz
frameworks_av-e4f25c280a8f1655c31a745978e0fcbc61f91dee.tar.bz2
LiveSession: fix incorrect stream key (subtitle"s")
Bug: 13402087 Change-Id: Ic46e3069c6e41f90ead47cae84cbe0123d11002a
Diffstat (limited to 'media/libstagefright/httplive')
-rw-r--r--media/libstagefright/httplive/LiveSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/httplive/LiveSession.cpp b/media/libstagefright/httplive/LiveSession.cpp
index ceb3c8f..dd396e7 100644
--- a/media/libstagefright/httplive/LiveSession.cpp
+++ b/media/libstagefright/httplive/LiveSession.cpp
@@ -71,7 +71,7 @@ LiveSession::LiveSession(
mStreams[kAudioIndex] = StreamItem("audio");
mStreams[kVideoIndex] = StreamItem("video");
- mStreams[kSubtitleIndex] = StreamItem("subtitle");
+ mStreams[kSubtitleIndex] = StreamItem("subtitles");
for (size_t i = 0; i < kMaxStreams; ++i) {
mPacketSources.add(indexToType(i), new AnotherPacketSource(NULL /* meta */));