2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
2013-12-16 03:21:07 +01:00
|
|
|
#ifndef VP8_DECODER_ONYXD_INT_H_
|
|
|
|
#define VP8_DECODER_ONYXD_INT_H_
|
2013-03-05 01:53:00 +01:00
|
|
|
|
2011-09-15 14:34:12 +02:00
|
|
|
#include "vpx_config.h"
|
2011-02-10 20:41:38 +01:00
|
|
|
#include "vp8/common/onyxd.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "treereader.h"
|
2011-02-10 20:41:38 +01:00
|
|
|
#include "vp8/common/onyxc_int.h"
|
|
|
|
#include "vp8/common/threading.h"
|
2011-12-15 20:23:36 +01:00
|
|
|
|
2011-05-02 15:30:51 +02:00
|
|
|
#if CONFIG_ERROR_CONCEALMENT
|
|
|
|
#include "ec_types.h"
|
|
|
|
#endif
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
typedef struct {
|
|
|
|
int ithread;
|
|
|
|
void *ptr1;
|
|
|
|
void *ptr2;
|
2010-05-18 17:58:33 +02:00
|
|
|
} DECODETHREAD_DATA;
|
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
typedef struct { MACROBLOCKD mbd; } MB_ROW_DEC;
|
2012-10-03 19:07:13 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
typedef struct {
|
|
|
|
int enabled;
|
|
|
|
unsigned int count;
|
|
|
|
const unsigned char *ptrs[MAX_PARTITIONS];
|
|
|
|
unsigned int sizes[MAX_PARTITIONS];
|
2013-01-22 19:52:29 +01:00
|
|
|
} FRAGMENT_DATA;
|
|
|
|
|
2012-10-03 19:07:13 +02:00
|
|
|
#define MAX_FB_MT_DEC 32
|
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
struct frame_buffers {
|
|
|
|
/*
|
|
|
|
* this struct will be populated with frame buffer management
|
|
|
|
* info in future commits. */
|
2012-10-03 19:07:13 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
/* decoder instances */
|
|
|
|
struct VP8D_COMP *pbi[MAX_FB_MT_DEC];
|
2012-10-03 19:07:13 +02:00
|
|
|
};
|
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
typedef struct VP8D_COMP {
|
|
|
|
DECLARE_ALIGNED(16, MACROBLOCKD, mb);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
YV12_BUFFER_CONFIG *dec_fb_ref[NUM_YV12_BUFFERS];
|
2012-09-24 21:44:45 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
DECLARE_ALIGNED(16, VP8_COMMON, common);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
/* the last partition will be used for the modes/mvs */
|
|
|
|
vp8_reader mbc[MAX_PARTITIONS];
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
VP8D_CONFIG oxcf;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
FRAGMENT_DATA fragments;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2011-02-05 06:29:25 +01:00
|
|
|
#if CONFIG_MULTITHREAD
|
2016-07-14 07:26:28 +02:00
|
|
|
/* variable for threading */
|
2016-12-13 01:27:21 +01:00
|
|
|
|
|
|
|
int b_multithreaded_rd;
|
2016-07-14 07:26:28 +02:00
|
|
|
int max_threads;
|
|
|
|
int current_mb_col_main;
|
|
|
|
unsigned int decoding_thread_count;
|
|
|
|
int allocated_decoding_thread_count;
|
|
|
|
|
|
|
|
int mt_baseline_filter_level[MAX_MB_SEGMENTS];
|
|
|
|
int sync_range;
|
|
|
|
int *mt_current_mb_col; /* Each row remembers its already decoded column. */
|
2016-12-13 01:27:21 +01:00
|
|
|
pthread_mutex_t *pmutex;
|
|
|
|
pthread_mutex_t mt_mutex; /* mutex for b_multithreaded_rd */
|
2016-07-14 07:26:28 +02:00
|
|
|
|
|
|
|
unsigned char **mt_yabove_row; /* mb_rows x width */
|
|
|
|
unsigned char **mt_uabove_row;
|
|
|
|
unsigned char **mt_vabove_row;
|
|
|
|
unsigned char **mt_yleft_col; /* mb_rows x 16 */
|
|
|
|
unsigned char **mt_uleft_col; /* mb_rows x 8 */
|
|
|
|
unsigned char **mt_vleft_col; /* mb_rows x 8 */
|
|
|
|
|
|
|
|
MB_ROW_DEC *mb_row_di;
|
|
|
|
DECODETHREAD_DATA *de_thread_data;
|
|
|
|
|
|
|
|
pthread_t *h_decoding_thread;
|
|
|
|
sem_t *h_event_start_decoding;
|
|
|
|
sem_t h_event_end_decoding;
|
|
|
|
/* end of threading data */
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|
2010-09-16 20:08:52 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
int64_t last_time_stamp;
|
|
|
|
int ready_for_new_data;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_prob prob_intra;
|
|
|
|
vp8_prob prob_last;
|
|
|
|
vp8_prob prob_gf;
|
|
|
|
vp8_prob prob_skip_false;
|
2010-09-09 20:42:48 +02:00
|
|
|
|
2011-05-02 15:30:51 +02:00
|
|
|
#if CONFIG_ERROR_CONCEALMENT
|
2016-07-14 07:26:28 +02:00
|
|
|
MB_OVERLAP *overlaps;
|
|
|
|
/* the mb num from which modes and mvs (first partition) are corrupt */
|
|
|
|
unsigned int mvs_corrupt_from_mb;
|
2011-05-02 15:30:51 +02:00
|
|
|
#endif
|
2016-07-14 07:26:28 +02:00
|
|
|
int ec_enabled;
|
|
|
|
int ec_active;
|
|
|
|
int decoded_key_frame;
|
|
|
|
int independent_partitions;
|
|
|
|
int frame_corrupt_residual;
|
|
|
|
|
|
|
|
vpx_decrypt_cb decrypt_cb;
|
|
|
|
void *decrypt_state;
|
2010-05-18 17:58:33 +02:00
|
|
|
} VP8D_COMP;
|
|
|
|
|
2017-06-17 01:16:05 +02:00
|
|
|
void vp8cx_init_de_quantizer(VP8D_COMP *pbi);
|
|
|
|
void vp8_mb_init_dequantizer(VP8D_COMP *pbi, MACROBLOCKD *xd);
|
2010-05-18 17:58:33 +02:00
|
|
|
int vp8_decode_frame(VP8D_COMP *cpi);
|
|
|
|
|
2012-10-03 19:07:13 +02:00
|
|
|
int vp8_create_decoder_instances(struct frame_buffers *fb, VP8D_CONFIG *oxcf);
|
|
|
|
int vp8_remove_decoder_instances(struct frame_buffers *fb);
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
#if CONFIG_DEBUG
|
2016-07-14 07:26:28 +02:00
|
|
|
#define CHECK_MEM_ERROR(lval, expr) \
|
|
|
|
do { \
|
|
|
|
lval = (expr); \
|
|
|
|
if (!lval) \
|
|
|
|
vpx_internal_error(&pbi->common.error, VPX_CODEC_MEM_ERROR, \
|
|
|
|
"Failed to allocate " #lval " at %s:%d", __FILE__, \
|
|
|
|
__LINE__); \
|
|
|
|
} while (0)
|
2010-05-18 17:58:33 +02:00
|
|
|
#else
|
2016-07-14 07:26:28 +02:00
|
|
|
#define CHECK_MEM_ERROR(lval, expr) \
|
|
|
|
do { \
|
|
|
|
lval = (expr); \
|
|
|
|
if (!lval) \
|
|
|
|
vpx_internal_error(&pbi->common.error, VPX_CODEC_MEM_ERROR, \
|
|
|
|
"Failed to allocate " #lval); \
|
|
|
|
} while (0)
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2013-12-16 03:21:07 +01:00
|
|
|
#endif // VP8_DECODER_ONYXD_INT_H_
|