summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/httplive
diff options
context:
space:
mode:
authorRobert Shih <robertshih@google.com>2014-03-10 17:27:15 -0700
committerLajos Molnar <lajos@google.com>2014-03-11 14:08:18 -0700
commit7d3044d64294cca6fadd184648a57185e92cf5c6 (patch)
treeb73678e2d1c1b1450ef69e509b2f3fd446560ec7 /media/libstagefright/httplive
parent9f434cfd021f60e26baf589dc34bf3839b832d4d (diff)
downloadframeworks_av-7d3044d64294cca6fadd184648a57185e92cf5c6.zip
frameworks_av-7d3044d64294cca6fadd184648a57185e92cf5c6.tar.gz
frameworks_av-7d3044d64294cca6fadd184648a57185e92cf5c6.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 c1c3e2b..3e11759 100644
--- a/media/libstagefright/httplive/LiveSession.cpp
+++ b/media/libstagefright/httplive/LiveSession.cpp
@@ -75,7 +75,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 */));