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

Unified Diff: media/formats/mp4/aac.cc

Issue 2815303006: Convert MediaLog from being ref counted to owned by WebMediaPlayer. (Closed)
Patch Set: Rebase. Created 3 years, 8 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/formats/mp4/aac.h ('k') | media/formats/mp4/aac_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/mp4/aac.cc
diff --git a/media/formats/mp4/aac.cc b/media/formats/mp4/aac.cc
index cbabddb092fff9a0f9762168ad5bed2de5c3da3f..9ab7cbbbd3fe4691b006b133668f285acf0a1d7e 100644
--- a/media/formats/mp4/aac.cc
+++ b/media/formats/mp4/aac.cc
@@ -27,8 +27,7 @@ AAC::AAC(const AAC& other) = default;
AAC::~AAC() {
}
-bool AAC::Parse(const std::vector<uint8_t>& data,
- const scoped_refptr<MediaLog>& media_log) {
+bool AAC::Parse(const std::vector<uint8_t>& data, MediaLog* media_log) {
#if defined(OS_ANDROID)
codec_specific_data_ = data;
#endif
« no previous file with comments | « media/formats/mp4/aac.h ('k') | media/formats/mp4/aac_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698