mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 10:34:05 +00:00
b4ec664fc9
Adds field dts to struct kvz_picture and rewrites kvz_encoder_feed_frame to set the DTS when returning pictures.
68 lines
2.1 KiB
C
68 lines
2.1 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/>.
|
|
****************************************************************************/
|
|
|
|
/*
|
|
* \file
|
|
*/
|
|
|
|
#include "global.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_
|