| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_CDM_PPAPI_EXTERNAL_CLEAR_KEY_FFMPEG_CDM_VIDEO_DECODER_H_ | 5 #ifndef MEDIA_CDM_PPAPI_EXTERNAL_CLEAR_KEY_FFMPEG_CDM_VIDEO_DECODER_H_ |
| 6 #define MEDIA_CDM_PPAPI_EXTERNAL_CLEAR_KEY_FFMPEG_CDM_VIDEO_DECODER_H_ | 6 #define MEDIA_CDM_PPAPI_EXTERNAL_CLEAR_KEY_FFMPEG_CDM_VIDEO_DECODER_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 10 #include "media/cdm/ppapi/external_clear_key/cdm_video_decoder.h" | 11 #include "media/cdm/ppapi/external_clear_key/cdm_video_decoder.h" |
| 11 #include "media/cdm/ppapi/external_clear_key/clear_key_cdm_common.h" | 12 #include "media/cdm/ppapi/external_clear_key/clear_key_cdm_common.h" |
| 12 #include "media/ffmpeg/ffmpeg_deleters.h" | 13 #include "media/ffmpeg/ffmpeg_deleters.h" |
| 13 | 14 |
| 14 struct AVCodecContext; | 15 struct AVCodecContext; |
| 15 struct AVFrame; | 16 struct AVFrame; |
| 16 | 17 |
| 17 namespace media { | 18 namespace media { |
| 18 | 19 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 bool is_initialized_; | 51 bool is_initialized_; |
| 51 | 52 |
| 52 ClearKeyCdmHost* const host_; | 53 ClearKeyCdmHost* const host_; |
| 53 | 54 |
| 54 DISALLOW_COPY_AND_ASSIGN(FFmpegCdmVideoDecoder); | 55 DISALLOW_COPY_AND_ASSIGN(FFmpegCdmVideoDecoder); |
| 55 }; | 56 }; |
| 56 | 57 |
| 57 } // namespace media | 58 } // namespace media |
| 58 | 59 |
| 59 #endif // MEDIA_CDM_PPAPI_EXTERNAL_CLEAR_KEY_FFMPEG_CDM_VIDEO_DECODER_H_ | 60 #endif // MEDIA_CDM_PPAPI_EXTERNAL_CLEAR_KEY_FFMPEG_CDM_VIDEO_DECODER_H_ |
| OLD | NEW |