Initial WebM release
[platform/upstream/libvpx.git] / vpx_scale / scale_mode.h
1 /*
2  *  Copyright (c) 2010 The VP8 project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license and patent
5  *  grant that can be found in the LICENSE file in the root of the source
6  *  tree. All contributing project authors may be found in the AUTHORS
7  *  file in the root of the source tree.
8  */
9
10
11 /****************************************************************************
12 *
13 *****************************************************************************
14 */
15
16 #ifndef SCALE_MODE_H
17 #define SCALE_MODE_H
18
19 typedef enum
20 {
21     MAINTAIN_ASPECT_RATIO   = 0x0,
22     SCALE_TO_FIT            = 0x1,
23     CENTER                  = 0x2,
24     OTHER                   = 0x3
25 } SCALE_MODE;
26
27
28 #endif