blob: 64380934475e69ab4db26e87a34c937d893e6471 [file] [log] [blame]
Tom Finegan78cb2e62013-11-07 21:28:45 -08001/*
Yaowu Xu9c01aa12016-09-01 14:32:49 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Tom Finegan78cb2e62013-11-07 21:28:45 -08003 *
Yaowu Xu9c01aa12016-09-01 14:32:49 -07004 * 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.
Tom Finegan78cb2e62013-11-07 21:28:45 -080010 */
11
Yaowu Xuf883b422016-08-30 14:01:10 -070012#ifndef AOMSTATS_H_
13#define AOMSTATS_H_
Tom Finegan78cb2e62013-11-07 21:28:45 -080014
15#include <stdio.h>
16
Yaowu Xuf883b422016-08-30 14:01:10 -070017#include "aom/aom_encoder.h"
Tom Finegan78cb2e62013-11-07 21:28:45 -080018
James Zern25cfd8e2014-01-18 12:16:11 -080019#ifdef __cplusplus
20extern "C" {
21#endif
22
Tom Finegan78cb2e62013-11-07 21:28:45 -080023/* This structure is used to abstract the different ways of handling
24 * first pass statistics
25 */
26typedef struct {
Yaowu Xuf883b422016-08-30 14:01:10 -070027 aom_fixed_buf_t buf;
Tom Finegan78cb2e62013-11-07 21:28:45 -080028 int pass;
29 FILE *file;
30 char *buf_ptr;
31 size_t buf_alloc_sz;
32} stats_io_t;
33
34int stats_open_file(stats_io_t *stats, const char *fpf, int pass);
35int stats_open_mem(stats_io_t *stats, int pass);
36void stats_close(stats_io_t *stats, int last_pass);
37void stats_write(stats_io_t *stats, const void *pkt, size_t len);
Yaowu Xuf883b422016-08-30 14:01:10 -070038aom_fixed_buf_t stats_get(stats_io_t *stats);
Tom Finegan78cb2e62013-11-07 21:28:45 -080039
James Zern25cfd8e2014-01-18 12:16:11 -080040#ifdef __cplusplus
41} // extern "C"
42#endif
43
Yaowu Xuf883b422016-08-30 14:01:10 -070044#endif // AOMSTATS_H_