diff options
author | Robert Shih <robertshih@google.com> | 2014-03-10 17:27:15 -0700 |
---|---|---|
committer | Lajos Molnar <lajos@google.com> | 2014-03-11 14:08:18 -0700 |
commit | 7d3044d64294cca6fadd184648a57185e92cf5c6 (patch) | |
tree | b73678e2d1c1b1450ef69e509b2f3fd446560ec7 | |
parent | 9f434cfd021f60e26baf589dc34bf3839b832d4d (diff) | |
download | frameworks_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
-rw-r--r-- | media/libstagefright/httplive/LiveSession.cpp | 2 |
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 */)); |