Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / xwalk / sysapps / device_capabilities / av_codecs_provider_ffmpeg.h
1 // Copyright (c) 2013 Intel Corporation. All rights reserved.
2 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5
6 #ifndef XWALK_SYSAPPS_DEVICE_CAPABILITIES_AV_CODECS_PROVIDER_FFMPEG_H_
7 #define XWALK_SYSAPPS_DEVICE_CAPABILITIES_AV_CODECS_PROVIDER_FFMPEG_H_
8
9 #include "xwalk/sysapps/device_capabilities/av_codecs_provider.h"
10
11 namespace xwalk {
12 namespace sysapps {
13
14 class AVCodecsProviderFFmpeg : public AVCodecsProvider {
15  public:
16   AVCodecsProviderFFmpeg();
17   virtual ~AVCodecsProviderFFmpeg();
18
19   scoped_ptr<SystemAVCodecs> GetSupportedCodecs() const override;
20
21  private:
22   DISALLOW_COPY_AND_ASSIGN(AVCodecsProviderFFmpeg);
23 };
24
25 }  // namespace sysapps
26 }  // namespace xwalk
27
28 #endif  // XWALK_SYSAPPS_DEVICE_CAPABILITIES_AV_CODECS_PROVIDER_FFMPEG_H_