2014-06-05 07:48:59 +00:00
|
|
|
#ifndef PICTURE_LIST_H_
|
|
|
|
#define PICTURE_LIST_H_
|
|
|
|
/*****************************************************************************
|
|
|
|
* This file is part of Kvazaar HEVC encoder.
|
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* Copyright (C) 2013-2015 Tampere University of Technology and others (see
|
2014-06-05 07:48:59 +00:00
|
|
|
* COPYING file).
|
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* 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.
|
2014-06-05 07:48:59 +00:00
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* 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.
|
2014-06-05 07:48:59 +00:00
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with Kvazaar. If not, see <http://www.gnu.org/licenses/>.
|
2014-06-05 07:48:59 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
2015-12-17 11:42:57 +00:00
|
|
|
/**
|
|
|
|
* \ingroup DataStructures
|
2014-06-05 07:48:59 +00:00
|
|
|
* \file
|
2015-12-17 11:42:57 +00:00
|
|
|
* Container for a list of reference pictures.
|
2014-06-05 07:48:59 +00:00
|
|
|
*/
|
|
|
|
|
2016-04-01 14:14:23 +00:00
|
|
|
#include "cu.h"
|
2016-03-30 09:41:37 +00:00
|
|
|
#include "global.h" // IWYU pragma: keep
|
2016-04-01 14:14:23 +00:00
|
|
|
#include "kvazaar.h"
|
2016-01-22 13:07:49 +00:00
|
|
|
|
2014-06-05 07:48:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Struct which contains array of picture structs
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
2015-06-30 07:56:29 +00:00
|
|
|
struct kvz_picture* *images; //!< \brief Pointer to array of picture pointers.
|
2015-03-04 10:52:49 +00:00
|
|
|
cu_array_t* *cu_arrays;
|
2015-06-17 06:56:53 +00:00
|
|
|
int32_t *pocs;
|
2014-06-05 07:48:59 +00:00
|
|
|
uint32_t size; //!< \brief Array size.
|
|
|
|
uint32_t used_size;
|
2015-03-04 14:13:57 +00:00
|
|
|
} image_list_t;
|
2014-06-05 07:48:59 +00:00
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
image_list_t * kvz_image_list_alloc(int size);
|
|
|
|
int kvz_image_list_resize(image_list_t *list, unsigned size);
|
|
|
|
int kvz_image_list_destroy(image_list_t *list);
|
|
|
|
int kvz_image_list_add(image_list_t *list, kvz_picture *im, cu_array_t* cua, int32_t poc);
|
|
|
|
int kvz_image_list_rem(image_list_t *list, unsigned n);
|
2014-06-05 12:54:58 +00:00
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
int kvz_image_list_copy_contents(image_list_t *target, image_list_t *source);
|
2014-06-16 06:18:26 +00:00
|
|
|
|
2014-06-05 12:54:58 +00:00
|
|
|
enum { REF_PIC_LIST_0 = 0, REF_PIC_LIST_1 = 1, REF_PIC_LIST_X = 100 };
|
2014-06-05 07:48:59 +00:00
|
|
|
|
2014-06-16 06:18:26 +00:00
|
|
|
#endif //PICTURE_LIST_H_
|