| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_FILTERS_LIBWEBM_MUXER_H_ | 5 #ifndef MEDIA_MUXERS_WEBM_MUXER_H_ |
| 6 #define MEDIA_FILTERS_LIBWEBM_MUXER_H_ | 6 #define MEDIA_MUXERS_WEBM_MUXER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <deque> | 10 #include <deque> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/numerics/safe_math.h" | 14 #include "base/numerics/safe_math.h" |
| 15 #include "base/strings/string_piece.h" | 15 #include "base/strings/string_piece.h" |
| 16 #include "base/threading/thread_checker.h" | 16 #include "base/threading/thread_checker.h" |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 private: | 132 private: |
| 133 DISALLOW_IMPLICIT_CONSTRUCTORS(EncodedVideoFrame); | 133 DISALLOW_IMPLICIT_CONSTRUCTORS(EncodedVideoFrame); |
| 134 }; | 134 }; |
| 135 std::deque<scoped_ptr<EncodedVideoFrame>> encoded_frames_queue_; | 135 std::deque<scoped_ptr<EncodedVideoFrame>> encoded_frames_queue_; |
| 136 | 136 |
| 137 DISALLOW_COPY_AND_ASSIGN(WebmMuxer); | 137 DISALLOW_COPY_AND_ASSIGN(WebmMuxer); |
| 138 }; | 138 }; |
| 139 | 139 |
| 140 } // namespace media | 140 } // namespace media |
| 141 | 141 |
| 142 #endif // MEDIA_FILTERS_LIBWEBM_MUXER_H_ | 142 #endif // MEDIA_MUXERS_WEBM_MUXER_H_ |
| OLD | NEW |