Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MEDIA_FILTERS_FFMPEG_DECODER_UNITTEST_H_ | |
| 6 #define MEDIA_FILTERS_FFMPEG_DECODER_UNITTEST_H_ | |
| 7 | |
| 8 namespace media { | |
| 9 // Used to inject our message loop into the FFmpeg[Audio|Video|Decoder. | |
| 10 template<class T> T Identity(T t) { return t; } | |
|
Ami GONE FROM CHROMIUM
2012/03/11 23:43:12
I think you misunderstood my comment about namespa
| |
| 11 } // namespace media | |
| 12 | |
| 13 #endif // MEDIA_FILTERS_FFMPEG_DECODER_UNITTEST_H_ | |
| OLD | NEW |