| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef MEDIA_FORMATS_WEBM_WEBM_STREAM_PARSER_H_ | 5 #ifndef MEDIA_FORMATS_WEBM_WEBM_STREAM_PARSER_H_ |
| 6 #define MEDIA_FORMATS_WEBM_WEBM_STREAM_PARSER_H_ | 6 #define MEDIA_FORMATS_WEBM_WEBM_STREAM_PARSER_H_ |
| 7 | 7 |
| 8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
| 9 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 10 #include "media/base/audio_decoder_config.h" | 11 #include "media/base/audio_decoder_config.h" |
| 11 #include "media/base/byte_queue.h" | 12 #include "media/base/byte_queue.h" |
| 12 #include "media/base/stream_parser.h" | 13 #include "media/base/stream_parser.h" |
| 13 #include "media/base/video_decoder_config.h" | 14 #include "media/base/video_decoder_config.h" |
| 14 | 15 |
| 15 namespace media { | 16 namespace media { |
| 16 | 17 |
| 17 class WebMClusterParser; | 18 class WebMClusterParser; |
| 18 | 19 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 81 |
| 81 scoped_ptr<WebMClusterParser> cluster_parser_; | 82 scoped_ptr<WebMClusterParser> cluster_parser_; |
| 82 ByteQueue byte_queue_; | 83 ByteQueue byte_queue_; |
| 83 | 84 |
| 84 DISALLOW_COPY_AND_ASSIGN(WebMStreamParser); | 85 DISALLOW_COPY_AND_ASSIGN(WebMStreamParser); |
| 85 }; | 86 }; |
| 86 | 87 |
| 87 } // namespace media | 88 } // namespace media |
| 88 | 89 |
| 89 #endif // MEDIA_FORMATS_WEBM_WEBM_STREAM_PARSER_H_ | 90 #endif // MEDIA_FORMATS_WEBM_WEBM_STREAM_PARSER_H_ |
| OLD | NEW |