mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 00:17:32 +09:00
Issue #1737 - Import libaom 2.0.2 source (excluding aom_ports/aom_once.h)
This commit is contained in:
parent
9031ee4017
commit
7537b4d23a
767 changed files with 152707 additions and 85235 deletions
|
|
@ -18,13 +18,17 @@ static int frame_idx_w = 0;
|
|||
|
||||
static int frame_idx_r = 0;
|
||||
|
||||
void bitstream_queue_set_frame_write(int frame_idx) { frame_idx_w = frame_idx; }
|
||||
void aom_bitstream_queue_set_frame_write(int frame_idx) {
|
||||
frame_idx_w = frame_idx;
|
||||
}
|
||||
|
||||
int bitstream_queue_get_frame_write(void) { return frame_idx_w; }
|
||||
int aom_bitstream_queue_get_frame_writee(void) { return frame_idx_w; }
|
||||
|
||||
void bitstream_queue_set_frame_read(int frame_idx) { frame_idx_r = frame_idx; }
|
||||
void aom_bitstream_queue_set_frame_read(int frame_idx) {
|
||||
frame_idx_r = frame_idx;
|
||||
}
|
||||
|
||||
int bitstream_queue_get_frame_read(void) { return frame_idx_r; }
|
||||
int aom_bitstream_queue_get_frame_read(void) { return frame_idx_r; }
|
||||
|
||||
#if CONFIG_BITSTREAM_DEBUG
|
||||
#define QUEUE_MAX_SIZE 2000000
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue