summaryrefslogtreecommitdiffstats
path: root/remoting/codec/scoped_vpx_codec.h
blob: bf03c64909b9b48340ebc6bac920d429a34708ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_CODEC_SCOPED_VPX_CODEC_H_
#define REMOTING_CODEC_SCOPED_VPX_CODEC_H_

#include "base/memory/scoped_ptr.h"

extern "C" {
typedef struct vpx_codec_ctx vpx_codec_ctx_t;
}

namespace remoting {

struct VpxCodecDeleter {
  void operator()(vpx_codec_ctx_t* codec);
};

typedef scoped_ptr<vpx_codec_ctx_t, VpxCodecDeleter> ScopedVpxCodec;

} // namespace remoting

#endif  // REMOTING_CODEC_SCOPED_VPX_CODEC_H_