190d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber/*
2b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian *  Copyright (c) 2014 The WebM project authors. All Rights Reserved.
390d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber *
4f71323e297a928af368937089d3ed71239786f86Andreas Huber *  Use of this source code is governed by a BSD-style license
5f71323e297a928af368937089d3ed71239786f86Andreas Huber *  that can be found in the LICENSE file in the root of the source
6f71323e297a928af368937089d3ed71239786f86Andreas Huber *  tree. An additional intellectual property rights grant can be found
7f71323e297a928af368937089d3ed71239786f86Andreas Huber *  in the file PATENTS.  All contributing project authors may
8f71323e297a928af368937089d3ed71239786f86Andreas Huber *  be found in the AUTHORS file in the root of the source tree.
990d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber */
1090d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber
11b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian#ifndef VIDEO_COMMON_H_
12b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian#define VIDEO_COMMON_H_
1390d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber
14b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian#include "./tools_common.h"
1590d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber
16b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramaniantypedef struct {
17b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian  uint32_t codec_fourcc;
18b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian  int frame_width;
19b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian  int frame_height;
20b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian  struct VpxRational time_base;
21b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian} VpxVideoInfo;
2290d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber
23b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian#endif  // VIDEO_COMMON_H_
24