
Cherry-Picked the following commits: 0defd8f Changed "WebM" to "AOMedia" & "webm" to "aomedia" 54e6676 Replace "VPx" by "AVx" 5082a36 Change "Vpx" to "Avx" 7df44f1 Replace "Vp9" w/ "Av1" 967f722 Remove kVp9CodecId 828f30c Change "Vp8" to "AOM" 030b5ff AUTHORS regenerated 2524cae Add ref-mv experimental flag 016762b Change copyright notice to AOMedia form 81e5526 Replace vp9 w/ av1 9b94565 Add missing files fa8ca9f Change "vp9" to "av1" ec838b7 Convert "vp8" to "aom" 80edfa0 Change "VP9" to "AV1" d1a11fb Change "vp8" to "aom" 7b58251 Point to WebM test data dd1a5c8 Replace "VP8" with "AOM" ff00fc0 Change "VPX" to "AOM" 01dee0b Change "vp10" to "av1" in source code cebe6f0 Convert "vpx" to "aom" 17b0567 rename vp10*.mk to av1_*.mk fe5f8a8 rename files vp10_* to av1_* Change-Id: I6fc3d18eb11fc171e46140c836ad5339cf6c9419
52 lines
1.8 KiB
C
52 lines
1.8 KiB
C
/*
|
|
* Copyright (c) 2014 The WebM project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef VIDEO_READER_H_
|
|
#define VIDEO_READER_H_
|
|
|
|
#include "./video_common.h"
|
|
|
|
// The following code is work in progress. It is going to support transparent
|
|
// reading of input files. Right now only IVF format is supported for
|
|
// simplicity. The main goal the API is to be simple and easy to use in example
|
|
// code and in aomenc/aomdec later. All low-level details like memory
|
|
// buffer management are hidden from API users.
|
|
struct AvxVideoReaderStruct;
|
|
typedef struct AvxVideoReaderStruct AvxVideoReader;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Opens the input file for reading and inspects it to determine file type.
|
|
// Returns an opaque AvxVideoReader* upon success, or NULL upon failure.
|
|
// Right now only IVF format is supported.
|
|
AvxVideoReader *aom_video_reader_open(const char *filename);
|
|
|
|
// Frees all resources associated with AvxVideoReader* returned from
|
|
// aom_video_reader_open() call.
|
|
void aom_video_reader_close(AvxVideoReader *reader);
|
|
|
|
// Reads frame from the file and stores it in internal buffer.
|
|
int aom_video_reader_read_frame(AvxVideoReader *reader);
|
|
|
|
// Returns the pointer to memory buffer with frame data read by last call to
|
|
// aom_video_reader_read_frame().
|
|
const uint8_t *aom_video_reader_get_frame(AvxVideoReader *reader, size_t *size);
|
|
|
|
// Fills AvxVideoInfo with information from opened video file.
|
|
const AvxVideoInfo *aom_video_reader_get_info(AvxVideoReader *reader);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // VIDEO_READER_H_
|