uvg266/src/input_frame_buffer.h
Ari Koivula 61fc3e87ba Run include-what-you-use fix_includes.py fix_includes.py
The includes should make more sense now and not just happen to compile
due to headers included from other headers.

Used a modified version of IWYU. Modifications were to attribute int8_t
and so on to stdint.h instead of sys/types.h and immintrin.h instead of
more specific headers.

include-what-you-use 0.7 (git:b70df35)
based on clang version 3.9.0 (trunk 264728)
2016-04-01 17:46:55 +03:00

72 lines
2.2 KiB
C

#ifndef INPUT_FRAME_BUFFER_H_
#define INPUT_FRAME_BUFFER_H_
/*****************************************************************************
* This file is part of Kvazaar HEVC encoder.
*
* Copyright (C) 2013-2015 Tampere University of Technology and others (see
* COPYING file).
*
* Kvazaar is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* Kvazaar is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with Kvazaar. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
/**
* \ingroup Control
* \file
* Buffering of input for reordering.
*/
#include "global.h" // IWYU pragma: keep
#include "kvazaar.h"
// Forward declaration.
struct encoder_state_t;
typedef struct input_frame_buffer_t {
/** \brief An array for stroring the input frames. */
struct kvz_picture *pic_buffer[3 * KVZ_MAX_GOP_LENGTH];
/** \brief An array for stroring the timestamps. */
int64_t pts_buffer[3 * KVZ_MAX_GOP_LENGTH];
/** \brief Number of pictures input. */
uint64_t num_in;
/** \brief Number of pictures output. */
uint64_t num_out;
/** \brief Value to subtract from the DTS values of the first frames.
*
* This will be set to the difference of the PTS values of the first and
* (cfg->gop_len)th frames, unless the sequence has less that cfg->gop_len
* frames.
*/
int64_t delay;
/** \brief Number of GOP pictures skipped.
*
* This is used when the last GOP of the sequence is not full.
*/
int gop_skipped;
} input_frame_buffer_t;
void kvz_init_input_frame_buffer(input_frame_buffer_t *input_buffer);
int kvz_encoder_feed_frame(input_frame_buffer_t *buf,
struct encoder_state_t *const state,
struct kvz_picture *const img_in);
#endif // INPUT_FRAME_BUFFER_H_