Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(663)

Unified Diff: media/mp4/aac.cc

Issue 16114009: Add AAC codec specific data for MSE on android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressing comments Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/mp4/aac.h ('k') | media/mp4/mp4_stream_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mp4/aac.cc
diff --git a/media/mp4/aac.cc b/media/mp4/aac.cc
index f92dd2feb928b9fc69cf1e9c6337c1bb19f513dd..6604c505a0e81c88e05947d4383601d5afdd1ac4 100644
--- a/media/mp4/aac.cc
+++ b/media/mp4/aac.cc
@@ -53,6 +53,9 @@ AAC::~AAC() {
}
bool AAC::Parse(const std::vector<uint8>& data) {
+#if defined(OS_ANDROID)
+ codec_specific_data_ = data;
+#endif
if (data.empty())
return false;
« no previous file with comments | « media/mp4/aac.h ('k') | media/mp4/mp4_stream_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698