Reuse neighbor's warped motion parameters
[aom.git] / video_reader.h
blob962c6653b50f6b11223b6f969dce37bad75c3c5c
1 /*
2 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
4 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
12 #ifndef VIDEO_READER_H_
13 #define VIDEO_READER_H_
15 #include "./video_common.h"
17 // The following code is work in progress. It is going to support transparent
18 // reading of input files. Right now only IVF format is supported for
19 // simplicity. The main goal the API is to be simple and easy to use in example
20 // code and in aomenc/aomdec later. All low-level details like memory
21 // buffer management are hidden from API users.
22 struct AvxVideoReaderStruct;
23 typedef struct AvxVideoReaderStruct AvxVideoReader;
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
29 // Opens the input file for reading and inspects it to determine file type.
30 // Returns an opaque AvxVideoReader* upon success, or NULL upon failure.
31 // Right now only IVF format is supported.
32 AvxVideoReader *aom_video_reader_open(const char *filename);
34 // Frees all resources associated with AvxVideoReader* returned from
35 // aom_video_reader_open() call.
36 void aom_video_reader_close(AvxVideoReader *reader);
38 // Reads frame from the file and stores it in internal buffer.
39 int aom_video_reader_read_frame(AvxVideoReader *reader);
41 // Returns the pointer to memory buffer with frame data read by last call to
42 // aom_video_reader_read_frame().
43 const uint8_t *aom_video_reader_get_frame(AvxVideoReader *reader, size_t *size);
45 // Fills AvxVideoInfo with information from opened video file.
46 const AvxVideoInfo *aom_video_reader_get_info(AvxVideoReader *reader);
48 #ifdef __cplusplus
49 } // extern "C"
50 #endif
52 #endif // VIDEO_READER_H_