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

Side by Side Diff: media/mp4/mp4_stream_parser.cc

Issue 18052007: Use a direct include of time headers in media/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « media/filters/video_renderer_base_unittest.cc ('k') | media/mp4/mp4_stream_parser_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "media/mp4/mp4_stream_parser.h" 5 #include "media/mp4/mp4_stream_parser.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/callback_helpers.h" 8 #include "base/callback_helpers.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/time.h" 10 #include "base/time/time.h"
11 #include "media/base/audio_decoder_config.h" 11 #include "media/base/audio_decoder_config.h"
12 #include "media/base/stream_parser_buffer.h" 12 #include "media/base/stream_parser_buffer.h"
13 #include "media/base/video_decoder_config.h" 13 #include "media/base/video_decoder_config.h"
14 #include "media/base/video_util.h" 14 #include "media/base/video_util.h"
15 #include "media/mp4/box_definitions.h" 15 #include "media/mp4/box_definitions.h"
16 #include "media/mp4/box_reader.h" 16 #include "media/mp4/box_reader.h"
17 #include "media/mp4/es_descriptor.h" 17 #include "media/mp4/es_descriptor.h"
18 #include "media/mp4/rcheck.h" 18 #include "media/mp4/rcheck.h"
19 19
20 namespace media { 20 namespace media {
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 return !err; 569 return !err;
570 } 570 }
571 571
572 void MP4StreamParser::ChangeState(State new_state) { 572 void MP4StreamParser::ChangeState(State new_state) {
573 DVLOG(2) << "Changing state: " << new_state; 573 DVLOG(2) << "Changing state: " << new_state;
574 state_ = new_state; 574 state_ = new_state;
575 } 575 }
576 576
577 } // namespace mp4 577 } // namespace mp4
578 } // namespace media 578 } // namespace media
OLDNEW
« no previous file with comments | « media/filters/video_renderer_base_unittest.cc ('k') | media/mp4/mp4_stream_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698