2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2010-09-09 16:16:39 +04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2010-06-18 20:39:21 +04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-05 00:19:40 +04: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 20:39:21 +04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-05 00:19:40 +04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-02-10 22:41:38 +03:00
|
|
|
#include "vp8/common/onyxc_int.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#if CONFIG_POSTPROC
|
2011-02-10 22:41:38 +03:00
|
|
|
#include "vp8/common/postproc.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#endif
|
2011-02-10 22:41:38 +03:00
|
|
|
#include "vp8/common/onyxd.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "onyxd_int.h"
|
|
|
|
#include "vpx_mem/vpx_mem.h"
|
2011-02-10 22:41:38 +03:00
|
|
|
#include "vp8/common/alloccommon.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "vpx_scale/yv12extend.h"
|
2011-02-10 22:41:38 +03:00
|
|
|
#include "vp8/common/loopfilter.h"
|
|
|
|
#include "vp8/common/swapyv12buffer.h"
|
|
|
|
#include "vp8/common/threading.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "decoderthreading.h"
|
|
|
|
#include <stdio.h>
|
2011-06-01 23:41:12 +04:00
|
|
|
#include <assert.h>
|
2010-08-11 19:02:31 +04:00
|
|
|
|
2011-02-10 22:41:38 +03:00
|
|
|
#include "vp8/common/quant_common.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "vpx_scale/vpxscale.h"
|
2011-02-10 22:41:38 +03:00
|
|
|
#include "vp8/common/systemdependent.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "vpx_ports/vpx_timer.h"
|
2010-08-12 17:05:37 +04:00
|
|
|
#include "detokenize.h"
|
2011-05-02 17:30:51 +04:00
|
|
|
#if CONFIG_ERROR_CONCEALMENT
|
|
|
|
#include "error_concealment.h"
|
|
|
|
#endif
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#if ARCH_ARM
|
|
|
|
#include "vpx_ports/arm.h"
|
|
|
|
#endif
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
extern void vp8_init_loop_filter(VP8_COMMON *cm);
|
|
|
|
extern void vp8cx_init_de_quantizer(VP8D_COMP *pbi);
|
2011-05-23 15:47:33 +04:00
|
|
|
static int get_free_fb (VP8_COMMON *cm);
|
|
|
|
static void ref_cnt_fb (int *buf, int *idx, int new_idx);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
|
|
|
|
void vp8dx_initialize()
|
|
|
|
{
|
|
|
|
static int init_done = 0;
|
|
|
|
|
|
|
|
if (!init_done)
|
|
|
|
{
|
|
|
|
vp8_initialize_common();
|
|
|
|
vp8_scale_machine_specific_config();
|
|
|
|
init_done = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-21 04:54:54 +04:00
|
|
|
struct VP8D_COMP * vp8dx_create_decompressor(VP8D_CONFIG *oxcf)
|
2010-05-18 19:58:33 +04:00
|
|
|
{
|
|
|
|
VP8D_COMP *pbi = vpx_memalign(32, sizeof(VP8D_COMP));
|
|
|
|
|
|
|
|
if (!pbi)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
vpx_memset(pbi, 0, sizeof(VP8D_COMP));
|
|
|
|
|
|
|
|
if (setjmp(pbi->common.error.jmp))
|
|
|
|
{
|
|
|
|
pbi->common.error.setjmp = 0;
|
|
|
|
vp8dx_remove_decompressor(pbi);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
pbi->common.error.setjmp = 1;
|
|
|
|
vp8dx_initialize();
|
|
|
|
|
|
|
|
vp8_create_common(&pbi->common);
|
|
|
|
vp8_dmachine_specific_config(pbi);
|
|
|
|
|
|
|
|
pbi->common.current_video_frame = 0;
|
|
|
|
pbi->ready_for_new_data = 1;
|
|
|
|
|
2011-02-05 08:29:25 +03:00
|
|
|
#if CONFIG_MULTITHREAD
|
2010-05-18 19:58:33 +04:00
|
|
|
pbi->max_threads = oxcf->max_threads;
|
|
|
|
vp8_decoder_create_threads(pbi);
|
2011-02-05 08:29:25 +03:00
|
|
|
#endif
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2010-10-28 03:04:02 +04:00
|
|
|
/* vp8cx_init_de_quantizer() is first called here. Add check in frame_init_dequantizer() to avoid
|
|
|
|
* unnecessary calling of vp8cx_init_de_quantizer() for every frame.
|
|
|
|
*/
|
2010-05-18 19:58:33 +04:00
|
|
|
vp8cx_init_de_quantizer(pbi);
|
|
|
|
|
2011-07-20 23:53:42 +04:00
|
|
|
vp8_loop_filter_init(&pbi->common);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
pbi->common.error.setjmp = 0;
|
2011-05-02 17:30:51 +04:00
|
|
|
|
|
|
|
#if CONFIG_ERROR_CONCEALMENT
|
|
|
|
pbi->ec_enabled = oxcf->error_concealment;
|
|
|
|
#else
|
|
|
|
pbi->ec_enabled = 0;
|
|
|
|
#endif
|
2011-08-08 12:56:20 +04:00
|
|
|
/* Error concealment is activated after a key frame has been
|
|
|
|
* decoded without errors when error concealment is enabled.
|
|
|
|
*/
|
|
|
|
pbi->ec_active = 0;
|
|
|
|
|
|
|
|
pbi->decoded_key_frame = 0;
|
2011-05-02 17:30:51 +04:00
|
|
|
|
2011-09-29 11:17:09 +04:00
|
|
|
pbi->input_fragments = oxcf->input_fragments;
|
|
|
|
pbi->num_fragments = 0;
|
2011-06-13 18:42:27 +04:00
|
|
|
|
2011-08-08 12:56:20 +04:00
|
|
|
/* Independent partitions is activated when a frame updates the
|
|
|
|
* token probability table to have equal probabilities over the
|
|
|
|
* PREV_COEF context.
|
|
|
|
*/
|
|
|
|
pbi->independent_partitions = 0;
|
|
|
|
|
2011-12-21 04:54:54 +04:00
|
|
|
return pbi;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-21 04:54:54 +04:00
|
|
|
void vp8dx_remove_decompressor(VP8D_COMP *pbi)
|
2010-05-18 19:58:33 +04:00
|
|
|
{
|
|
|
|
if (!pbi)
|
|
|
|
return;
|
|
|
|
|
2010-09-16 22:08:52 +04:00
|
|
|
#if CONFIG_MULTITHREAD
|
|
|
|
if (pbi->b_multithreaded_rd)
|
|
|
|
vp8mt_de_alloc_temp_buffers(pbi, pbi->common.mb_rows);
|
2010-05-18 19:58:33 +04:00
|
|
|
vp8_decoder_remove_threads(pbi);
|
2011-05-02 17:30:51 +04:00
|
|
|
#endif
|
|
|
|
#if CONFIG_ERROR_CONCEALMENT
|
|
|
|
vp8_de_alloc_overlap_lists(pbi);
|
2011-02-05 08:29:25 +03:00
|
|
|
#endif
|
2010-05-18 19:58:33 +04:00
|
|
|
vp8_remove_common(&pbi->common);
|
2011-06-14 04:29:49 +04:00
|
|
|
vpx_free(pbi->mbc);
|
2010-05-18 19:58:33 +04:00
|
|
|
vpx_free(pbi);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-21 04:54:54 +04:00
|
|
|
vpx_codec_err_t vp8dx_get_reference(VP8D_COMP *pbi, VP8_REFFRAME ref_frame_flag, YV12_BUFFER_CONFIG *sd)
|
2010-05-18 19:58:33 +04:00
|
|
|
{
|
|
|
|
VP8_COMMON *cm = &pbi->common;
|
2010-07-22 16:07:32 +04:00
|
|
|
int ref_fb_idx;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
if (ref_frame_flag == VP8_LAST_FLAG)
|
2010-07-22 16:07:32 +04:00
|
|
|
ref_fb_idx = cm->lst_fb_idx;
|
2010-05-18 19:58:33 +04:00
|
|
|
else if (ref_frame_flag == VP8_GOLD_FLAG)
|
2010-07-22 16:07:32 +04:00
|
|
|
ref_fb_idx = cm->gld_fb_idx;
|
2010-05-18 19:58:33 +04:00
|
|
|
else if (ref_frame_flag == VP8_ALT_FLAG)
|
2010-07-22 16:07:32 +04:00
|
|
|
ref_fb_idx = cm->alt_fb_idx;
|
2011-06-22 20:41:17 +04:00
|
|
|
else{
|
|
|
|
vpx_internal_error(&pbi->common.error, VPX_CODEC_ERROR,
|
|
|
|
"Invalid reference frame");
|
|
|
|
return pbi->common.error.error_code;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2011-06-22 20:41:17 +04:00
|
|
|
if(cm->yv12_fb[ref_fb_idx].y_height != sd->y_height ||
|
|
|
|
cm->yv12_fb[ref_fb_idx].y_width != sd->y_width ||
|
|
|
|
cm->yv12_fb[ref_fb_idx].uv_height != sd->uv_height ||
|
|
|
|
cm->yv12_fb[ref_fb_idx].uv_width != sd->uv_width){
|
|
|
|
vpx_internal_error(&pbi->common.error, VPX_CODEC_ERROR,
|
|
|
|
"Incorrect buffer dimensions");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
vp8_yv12_copy_frame_ptr(&cm->yv12_fb[ref_fb_idx], sd);
|
2010-07-22 16:07:32 +04:00
|
|
|
|
2011-06-22 20:41:17 +04:00
|
|
|
return pbi->common.error.error_code;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2011-03-18 00:07:59 +03:00
|
|
|
|
|
|
|
|
2011-12-21 04:54:54 +04:00
|
|
|
vpx_codec_err_t vp8dx_set_reference(VP8D_COMP *pbi, VP8_REFFRAME ref_frame_flag, YV12_BUFFER_CONFIG *sd)
|
2010-05-18 19:58:33 +04:00
|
|
|
{
|
|
|
|
VP8_COMMON *cm = &pbi->common;
|
2011-05-23 15:47:33 +04:00
|
|
|
int *ref_fb_ptr = NULL;
|
|
|
|
int free_fb;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
if (ref_frame_flag == VP8_LAST_FLAG)
|
2011-06-01 23:41:12 +04:00
|
|
|
ref_fb_ptr = &cm->lst_fb_idx;
|
2010-05-18 19:58:33 +04:00
|
|
|
else if (ref_frame_flag == VP8_GOLD_FLAG)
|
2011-06-01 23:41:12 +04:00
|
|
|
ref_fb_ptr = &cm->gld_fb_idx;
|
2010-05-18 19:58:33 +04:00
|
|
|
else if (ref_frame_flag == VP8_ALT_FLAG)
|
2011-06-01 23:41:12 +04:00
|
|
|
ref_fb_ptr = &cm->alt_fb_idx;
|
2011-06-22 20:41:17 +04:00
|
|
|
else{
|
|
|
|
vpx_internal_error(&pbi->common.error, VPX_CODEC_ERROR,
|
|
|
|
"Invalid reference frame");
|
|
|
|
return pbi->common.error.error_code;
|
|
|
|
}
|
2011-05-23 15:47:33 +04:00
|
|
|
|
2011-06-22 20:41:17 +04:00
|
|
|
if(cm->yv12_fb[*ref_fb_ptr].y_height != sd->y_height ||
|
|
|
|
cm->yv12_fb[*ref_fb_ptr].y_width != sd->y_width ||
|
|
|
|
cm->yv12_fb[*ref_fb_ptr].uv_height != sd->uv_height ||
|
|
|
|
cm->yv12_fb[*ref_fb_ptr].uv_width != sd->uv_width){
|
|
|
|
vpx_internal_error(&pbi->common.error, VPX_CODEC_ERROR,
|
|
|
|
"Incorrect buffer dimensions");
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
/* Find an empty frame buffer. */
|
|
|
|
free_fb = get_free_fb(cm);
|
|
|
|
/* Decrease fb_idx_ref_cnt since it will be increased again in
|
|
|
|
* ref_cnt_fb() below. */
|
|
|
|
cm->fb_idx_ref_cnt[free_fb]--;
|
|
|
|
|
|
|
|
/* Manage the reference counters and copy image. */
|
|
|
|
ref_cnt_fb (cm->fb_idx_ref_cnt, ref_fb_ptr, free_fb);
|
|
|
|
vp8_yv12_copy_frame_ptr(sd, &cm->yv12_fb[*ref_fb_ptr]);
|
|
|
|
}
|
2010-07-22 16:07:32 +04:00
|
|
|
|
2011-06-22 20:41:17 +04:00
|
|
|
return pbi->common.error.error_code;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2010-10-28 03:04:02 +04:00
|
|
|
/*For ARM NEON, d8-d15 are callee-saved registers, and need to be saved by us.*/
|
2010-05-18 19:58:33 +04:00
|
|
|
#if HAVE_ARMV7
|
2011-07-26 05:44:59 +04:00
|
|
|
extern void vp8_push_neon(int64_t *store);
|
|
|
|
extern void vp8_pop_neon(int64_t *store);
|
2010-05-18 19:58:33 +04:00
|
|
|
#endif
|
2010-07-22 16:07:32 +04:00
|
|
|
|
|
|
|
static int get_free_fb (VP8_COMMON *cm)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < NUM_YV12_BUFFERS; i++)
|
|
|
|
if (cm->fb_idx_ref_cnt[i] == 0)
|
|
|
|
break;
|
|
|
|
|
2011-06-01 23:41:12 +04:00
|
|
|
assert(i < NUM_YV12_BUFFERS);
|
2010-07-22 16:07:32 +04:00
|
|
|
cm->fb_idx_ref_cnt[i] = 1;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ref_cnt_fb (int *buf, int *idx, int new_idx)
|
|
|
|
{
|
|
|
|
if (buf[*idx] > 0)
|
|
|
|
buf[*idx]--;
|
|
|
|
|
|
|
|
*idx = new_idx;
|
|
|
|
|
|
|
|
buf[new_idx]++;
|
|
|
|
}
|
|
|
|
|
2010-10-28 03:04:02 +04:00
|
|
|
/* If any buffer copy / swapping is signalled it should be done here. */
|
2010-07-22 16:07:32 +04:00
|
|
|
static int swap_frame_buffers (VP8_COMMON *cm)
|
|
|
|
{
|
fix last frame buffer copy logic regression
Commit 0ce3901 introduced a change in the frame buffer copy logic where
the NEW frame could be copied to the ARF or GF buffer through the
copy_buffer_to_{arf,gf}==1 flags, if the LAST frame was not being
refreshed. This is not correct. The intent of the
copy_buffer_to_{arf,gf}==1 flag is to copy the LAST buffer. To copy the
NEW buffer, the refresh_{alt_ref,golden}_frame flag should be used.
The original buffer copy logic is fairly convoluted. For example:
if (cm->refresh_last_frame)
{
vp8_swap_yv12_buffer(&cm->last_frame, &cm->new_frame);
cm->frame_to_show = &cm->last_frame;
}
else
{
cm->frame_to_show = &cm->new_frame;
}
...
if (cm->copy_buffer_to_arf)
{
if (cm->copy_buffer_to_arf == 1)
{
if (cm->refresh_last_frame)
vp8_yv12_copy_frame_ptr(&cm->new_frame, &cm->alt_ref_frame);
else
vp8_yv12_copy_frame_ptr(&cm->last_frame, &cm->alt_ref_frame);
}
else if (cm->copy_buffer_to_arf == 2)
vp8_yv12_copy_frame_ptr(&cm->golden_frame, &cm->alt_ref_frame);
}
Effectively, if refresh_last_frame, then new and last are swapped, so
when "new" is copied to ARF, it's equivalent to copying LAST to ARF. If
not refresh_last_frame, then LAST is copied to ARF. So LAST is copied to
ARF in both cases.
Commit 0ce3901 removed the first buffer swap but kept the
refresh_last_frame?new:last behavior, changing the sense since the first
swap wasn't done to the more readable refresh_last_frame?last:new, but
this logic is not correct when !refresh_last_frame.
This commit restores the correct behavior from v0.9.1 and prior. This
case is missing from the test vector set.
Change-Id: I8369fc13a37ae882e31a8a104da808a08bc8428f
2011-01-06 21:07:39 +03:00
|
|
|
int err = 0;
|
2010-07-22 16:07:32 +04:00
|
|
|
|
2010-10-28 03:04:02 +04:00
|
|
|
/* The alternate reference frame or golden frame can be updated
|
|
|
|
* using the new, last, or golden/alt ref frame. If it
|
|
|
|
* is updated using the newly decoded frame it is a refresh.
|
|
|
|
* An update using the last or golden/alt ref frame is a copy.
|
|
|
|
*/
|
2010-07-22 16:07:32 +04:00
|
|
|
if (cm->copy_buffer_to_arf)
|
|
|
|
{
|
|
|
|
int new_fb = 0;
|
|
|
|
|
|
|
|
if (cm->copy_buffer_to_arf == 1)
|
fix last frame buffer copy logic regression
Commit 0ce3901 introduced a change in the frame buffer copy logic where
the NEW frame could be copied to the ARF or GF buffer through the
copy_buffer_to_{arf,gf}==1 flags, if the LAST frame was not being
refreshed. This is not correct. The intent of the
copy_buffer_to_{arf,gf}==1 flag is to copy the LAST buffer. To copy the
NEW buffer, the refresh_{alt_ref,golden}_frame flag should be used.
The original buffer copy logic is fairly convoluted. For example:
if (cm->refresh_last_frame)
{
vp8_swap_yv12_buffer(&cm->last_frame, &cm->new_frame);
cm->frame_to_show = &cm->last_frame;
}
else
{
cm->frame_to_show = &cm->new_frame;
}
...
if (cm->copy_buffer_to_arf)
{
if (cm->copy_buffer_to_arf == 1)
{
if (cm->refresh_last_frame)
vp8_yv12_copy_frame_ptr(&cm->new_frame, &cm->alt_ref_frame);
else
vp8_yv12_copy_frame_ptr(&cm->last_frame, &cm->alt_ref_frame);
}
else if (cm->copy_buffer_to_arf == 2)
vp8_yv12_copy_frame_ptr(&cm->golden_frame, &cm->alt_ref_frame);
}
Effectively, if refresh_last_frame, then new and last are swapped, so
when "new" is copied to ARF, it's equivalent to copying LAST to ARF. If
not refresh_last_frame, then LAST is copied to ARF. So LAST is copied to
ARF in both cases.
Commit 0ce3901 removed the first buffer swap but kept the
refresh_last_frame?new:last behavior, changing the sense since the first
swap wasn't done to the more readable refresh_last_frame?last:new, but
this logic is not correct when !refresh_last_frame.
This commit restores the correct behavior from v0.9.1 and prior. This
case is missing from the test vector set.
Change-Id: I8369fc13a37ae882e31a8a104da808a08bc8428f
2011-01-06 21:07:39 +03:00
|
|
|
new_fb = cm->lst_fb_idx;
|
2010-07-22 16:07:32 +04:00
|
|
|
else if (cm->copy_buffer_to_arf == 2)
|
|
|
|
new_fb = cm->gld_fb_idx;
|
|
|
|
else
|
|
|
|
err = -1;
|
|
|
|
|
|
|
|
ref_cnt_fb (cm->fb_idx_ref_cnt, &cm->alt_fb_idx, new_fb);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cm->copy_buffer_to_gf)
|
|
|
|
{
|
|
|
|
int new_fb = 0;
|
|
|
|
|
|
|
|
if (cm->copy_buffer_to_gf == 1)
|
fix last frame buffer copy logic regression
Commit 0ce3901 introduced a change in the frame buffer copy logic where
the NEW frame could be copied to the ARF or GF buffer through the
copy_buffer_to_{arf,gf}==1 flags, if the LAST frame was not being
refreshed. This is not correct. The intent of the
copy_buffer_to_{arf,gf}==1 flag is to copy the LAST buffer. To copy the
NEW buffer, the refresh_{alt_ref,golden}_frame flag should be used.
The original buffer copy logic is fairly convoluted. For example:
if (cm->refresh_last_frame)
{
vp8_swap_yv12_buffer(&cm->last_frame, &cm->new_frame);
cm->frame_to_show = &cm->last_frame;
}
else
{
cm->frame_to_show = &cm->new_frame;
}
...
if (cm->copy_buffer_to_arf)
{
if (cm->copy_buffer_to_arf == 1)
{
if (cm->refresh_last_frame)
vp8_yv12_copy_frame_ptr(&cm->new_frame, &cm->alt_ref_frame);
else
vp8_yv12_copy_frame_ptr(&cm->last_frame, &cm->alt_ref_frame);
}
else if (cm->copy_buffer_to_arf == 2)
vp8_yv12_copy_frame_ptr(&cm->golden_frame, &cm->alt_ref_frame);
}
Effectively, if refresh_last_frame, then new and last are swapped, so
when "new" is copied to ARF, it's equivalent to copying LAST to ARF. If
not refresh_last_frame, then LAST is copied to ARF. So LAST is copied to
ARF in both cases.
Commit 0ce3901 removed the first buffer swap but kept the
refresh_last_frame?new:last behavior, changing the sense since the first
swap wasn't done to the more readable refresh_last_frame?last:new, but
this logic is not correct when !refresh_last_frame.
This commit restores the correct behavior from v0.9.1 and prior. This
case is missing from the test vector set.
Change-Id: I8369fc13a37ae882e31a8a104da808a08bc8428f
2011-01-06 21:07:39 +03:00
|
|
|
new_fb = cm->lst_fb_idx;
|
2010-07-22 16:07:32 +04:00
|
|
|
else if (cm->copy_buffer_to_gf == 2)
|
|
|
|
new_fb = cm->alt_fb_idx;
|
|
|
|
else
|
|
|
|
err = -1;
|
|
|
|
|
|
|
|
ref_cnt_fb (cm->fb_idx_ref_cnt, &cm->gld_fb_idx, new_fb);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cm->refresh_golden_frame)
|
|
|
|
ref_cnt_fb (cm->fb_idx_ref_cnt, &cm->gld_fb_idx, cm->new_fb_idx);
|
|
|
|
|
|
|
|
if (cm->refresh_alt_ref_frame)
|
|
|
|
ref_cnt_fb (cm->fb_idx_ref_cnt, &cm->alt_fb_idx, cm->new_fb_idx);
|
|
|
|
|
|
|
|
if (cm->refresh_last_frame)
|
|
|
|
{
|
|
|
|
ref_cnt_fb (cm->fb_idx_ref_cnt, &cm->lst_fb_idx, cm->new_fb_idx);
|
|
|
|
|
|
|
|
cm->frame_to_show = &cm->yv12_fb[cm->lst_fb_idx];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
cm->frame_to_show = &cm->yv12_fb[cm->new_fb_idx];
|
|
|
|
|
|
|
|
cm->fb_idx_ref_cnt[cm->new_fb_idx]--;
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-12-21 04:54:54 +04:00
|
|
|
int vp8dx_receive_compressed_data(VP8D_COMP *pbi, unsigned long size, const unsigned char *source, int64_t time_stamp)
|
2010-05-18 19:58:33 +04:00
|
|
|
{
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#if HAVE_ARMV7
|
2011-07-26 05:44:59 +04:00
|
|
|
int64_t dx_store_reg[8];
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#endif
|
2010-05-18 19:58:33 +04:00
|
|
|
VP8_COMMON *cm = &pbi->common;
|
|
|
|
int retcode = 0;
|
|
|
|
|
2010-10-28 03:04:02 +04:00
|
|
|
/*if(pbi->ready_for_new_data == 0)
|
|
|
|
return -1;*/
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2011-12-21 04:54:54 +04:00
|
|
|
if (pbi == 0)
|
2010-05-18 19:58:33 +04:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pbi->common.error.error_code = VPX_CODEC_OK;
|
|
|
|
|
2011-09-29 11:17:09 +04:00
|
|
|
if (pbi->num_fragments == 0)
|
2010-12-16 18:46:31 +03:00
|
|
|
{
|
2011-09-29 11:17:09 +04:00
|
|
|
/* New frame, reset fragment pointers and sizes */
|
|
|
|
vpx_memset(pbi->fragments, 0, sizeof(pbi->fragments));
|
|
|
|
vpx_memset(pbi->fragment_sizes, 0, sizeof(pbi->fragment_sizes));
|
|
|
|
}
|
|
|
|
if (pbi->input_fragments && !(source == NULL && size == 0))
|
|
|
|
{
|
|
|
|
/* Store a pointer to this fragment and return. We haven't
|
2011-06-13 18:42:27 +04:00
|
|
|
* received the complete frame yet, so we will wait with decoding.
|
2011-05-02 17:30:51 +04:00
|
|
|
*/
|
2011-09-29 11:17:09 +04:00
|
|
|
assert(pbi->num_fragments < MAX_PARTITIONS);
|
|
|
|
pbi->fragments[pbi->num_fragments] = source;
|
|
|
|
pbi->fragment_sizes[pbi->num_fragments] = size;
|
|
|
|
pbi->num_fragments++;
|
|
|
|
if (pbi->num_fragments > (1 << EIGHT_PARTITION) + 1)
|
2011-05-02 17:30:51 +04:00
|
|
|
{
|
2011-06-13 18:42:27 +04:00
|
|
|
pbi->common.error.error_code = VPX_CODEC_UNSUP_BITSTREAM;
|
|
|
|
pbi->common.error.setjmp = 0;
|
2011-09-29 11:17:09 +04:00
|
|
|
pbi->num_fragments = 0;
|
2011-06-13 18:42:27 +04:00
|
|
|
return -1;
|
2011-05-02 17:30:51 +04:00
|
|
|
}
|
2011-06-13 18:42:27 +04:00
|
|
|
return 0;
|
2010-12-16 18:46:31 +03:00
|
|
|
}
|
2011-09-29 11:17:09 +04:00
|
|
|
|
|
|
|
if (!pbi->input_fragments)
|
2011-06-13 18:42:27 +04:00
|
|
|
{
|
2011-09-29 11:17:09 +04:00
|
|
|
pbi->fragments[0] = source;
|
|
|
|
pbi->fragment_sizes[0] = size;
|
|
|
|
pbi->num_fragments = 1;
|
|
|
|
}
|
|
|
|
assert(pbi->common.multi_token_partition <= EIGHT_PARTITION);
|
|
|
|
if (pbi->num_fragments == 0)
|
|
|
|
{
|
|
|
|
pbi->num_fragments = 1;
|
|
|
|
pbi->fragments[0] = NULL;
|
|
|
|
pbi->fragment_sizes[0] = 0;
|
|
|
|
}
|
2010-12-16 18:46:31 +03:00
|
|
|
|
2011-11-18 18:44:17 +04:00
|
|
|
if (!pbi->ec_active &&
|
|
|
|
pbi->num_fragments <= 1 && pbi->fragment_sizes[0] == 0)
|
2011-09-29 11:17:09 +04:00
|
|
|
{
|
|
|
|
/* If error concealment is disabled we won't signal missing frames
|
|
|
|
* to the decoder.
|
|
|
|
*/
|
2011-11-18 18:44:17 +04:00
|
|
|
if (cm->fb_idx_ref_cnt[cm->lst_fb_idx] > 1)
|
2011-06-13 18:42:27 +04:00
|
|
|
{
|
2011-11-18 18:44:17 +04:00
|
|
|
/* The last reference shares buffer with another reference
|
|
|
|
* buffer. Move it to its own buffer before setting it as
|
|
|
|
* corrupt, otherwise we will make multiple buffers corrupt.
|
|
|
|
*/
|
|
|
|
const int prev_idx = cm->lst_fb_idx;
|
|
|
|
cm->fb_idx_ref_cnt[prev_idx]--;
|
|
|
|
cm->lst_fb_idx = get_free_fb(cm);
|
|
|
|
vp8_yv12_copy_frame_ptr(&cm->yv12_fb[prev_idx],
|
|
|
|
&cm->yv12_fb[cm->lst_fb_idx]);
|
|
|
|
}
|
|
|
|
/* This is used to signal that we are missing frames.
|
|
|
|
* We do not know if the missing frame(s) was supposed to update
|
|
|
|
* any of the reference buffers, but we act conservative and
|
|
|
|
* mark only the last buffer as corrupted.
|
|
|
|
*/
|
|
|
|
cm->yv12_fb[cm->lst_fb_idx].corrupted = 1;
|
2011-06-13 18:42:27 +04:00
|
|
|
|
2011-11-18 18:44:17 +04:00
|
|
|
/* Signal that we have no frame to show. */
|
|
|
|
cm->show_frame = 0;
|
2011-08-08 12:56:20 +04:00
|
|
|
|
2011-11-18 18:44:17 +04:00
|
|
|
pbi->num_fragments = 0;
|
|
|
|
|
|
|
|
/* Nothing more to do. */
|
|
|
|
return 0;
|
2011-09-29 11:17:09 +04:00
|
|
|
}
|
2010-12-16 18:46:31 +03:00
|
|
|
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#if HAVE_ARMV7
|
|
|
|
#if CONFIG_RUNTIME_CPU_DETECT
|
2011-09-29 11:17:09 +04:00
|
|
|
if (cm->rtcd.flags & HAS_NEON)
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#endif
|
2011-09-29 11:17:09 +04:00
|
|
|
{
|
|
|
|
vp8_push_neon(dx_store_reg);
|
|
|
|
}
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#endif
|
|
|
|
|
2011-09-29 11:17:09 +04:00
|
|
|
cm->new_fb_idx = get_free_fb (cm);
|
2010-10-20 02:40:46 +04:00
|
|
|
|
2011-09-29 11:17:09 +04:00
|
|
|
if (setjmp(pbi->common.error.jmp))
|
|
|
|
{
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#if HAVE_ARMV7
|
|
|
|
#if CONFIG_RUNTIME_CPU_DETECT
|
2011-09-29 11:17:09 +04:00
|
|
|
if (cm->rtcd.flags & HAS_NEON)
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#endif
|
2011-09-29 11:17:09 +04:00
|
|
|
{
|
|
|
|
vp8_pop_neon(dx_store_reg);
|
|
|
|
}
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#endif
|
2011-09-29 11:17:09 +04:00
|
|
|
pbi->common.error.setjmp = 0;
|
2011-08-08 12:56:20 +04:00
|
|
|
|
2011-09-29 11:17:09 +04:00
|
|
|
pbi->num_fragments = 0;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2011-09-29 11:17:09 +04:00
|
|
|
/* We do not know if the missing frame(s) was supposed to update
|
|
|
|
* any of the reference buffers, but we act conservative and
|
|
|
|
* mark only the last buffer as corrupted.
|
|
|
|
*/
|
|
|
|
cm->yv12_fb[cm->lst_fb_idx].corrupted = 1;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2011-09-29 11:17:09 +04:00
|
|
|
if (cm->fb_idx_ref_cnt[cm->new_fb_idx] > 0)
|
|
|
|
cm->fb_idx_ref_cnt[cm->new_fb_idx]--;
|
|
|
|
return -1;
|
2011-06-13 18:42:27 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2011-09-29 11:17:09 +04:00
|
|
|
pbi->common.error.setjmp = 1;
|
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
retcode = vp8_decode_frame(pbi);
|
|
|
|
|
|
|
|
if (retcode < 0)
|
|
|
|
{
|
|
|
|
#if HAVE_ARMV7
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#if CONFIG_RUNTIME_CPU_DETECT
|
|
|
|
if (cm->rtcd.flags & HAS_NEON)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
vp8_pop_neon(dx_store_reg);
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
#endif
|
|
|
|
pbi->common.error.error_code = VPX_CODEC_ERROR;
|
|
|
|
pbi->common.error.setjmp = 0;
|
2011-09-29 11:17:09 +04:00
|
|
|
pbi->num_fragments = 0;
|
2010-10-20 02:40:46 +04:00
|
|
|
if (cm->fb_idx_ref_cnt[cm->new_fb_idx] > 0)
|
|
|
|
cm->fb_idx_ref_cnt[cm->new_fb_idx]--;
|
2010-05-18 19:58:33 +04:00
|
|
|
return retcode;
|
|
|
|
}
|
|
|
|
|
2011-02-05 08:29:25 +03:00
|
|
|
#if CONFIG_MULTITHREAD
|
2010-09-16 22:08:52 +04:00
|
|
|
if (pbi->b_multithreaded_rd && cm->multi_token_partition != ONE_PARTITION)
|
2010-05-18 19:58:33 +04:00
|
|
|
{
|
2010-09-16 22:08:52 +04:00
|
|
|
if (swap_frame_buffers (cm))
|
|
|
|
{
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#if HAVE_ARMV7
|
|
|
|
#if CONFIG_RUNTIME_CPU_DETECT
|
|
|
|
if (cm->rtcd.flags & HAS_NEON)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
vp8_pop_neon(dx_store_reg);
|
|
|
|
}
|
|
|
|
#endif
|
2010-09-16 22:08:52 +04:00
|
|
|
pbi->common.error.error_code = VPX_CODEC_ERROR;
|
|
|
|
pbi->common.error.setjmp = 0;
|
2011-09-29 11:17:09 +04:00
|
|
|
pbi->num_fragments = 0;
|
2010-09-16 22:08:52 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else
|
2011-02-05 08:29:25 +03:00
|
|
|
#endif
|
2010-05-18 19:58:33 +04:00
|
|
|
{
|
2010-09-16 22:08:52 +04:00
|
|
|
if (swap_frame_buffers (cm))
|
|
|
|
{
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#if HAVE_ARMV7
|
|
|
|
#if CONFIG_RUNTIME_CPU_DETECT
|
|
|
|
if (cm->rtcd.flags & HAS_NEON)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
vp8_pop_neon(dx_store_reg);
|
|
|
|
}
|
|
|
|
#endif
|
2010-09-16 22:08:52 +04:00
|
|
|
pbi->common.error.error_code = VPX_CODEC_ERROR;
|
|
|
|
pbi->common.error.setjmp = 0;
|
2011-09-29 11:17:09 +04:00
|
|
|
pbi->num_fragments = 0;
|
2010-09-16 22:08:52 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-07-20 23:53:42 +04:00
|
|
|
if(cm->filter_level)
|
2010-09-16 22:08:52 +04:00
|
|
|
{
|
2010-10-28 03:04:02 +04:00
|
|
|
/* Apply the loop filter if appropriate. */
|
2011-07-20 23:53:42 +04:00
|
|
|
vp8_loop_filter_frame(cm, &pbi->mb);
|
2010-09-16 22:08:52 +04:00
|
|
|
}
|
|
|
|
vp8_yv12_extend_frame_borders_ptr(cm->frame_to_show);
|
2010-06-30 18:22:40 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
|
|
|
|
vp8_clear_system_state();
|
|
|
|
|
2011-05-02 17:30:51 +04:00
|
|
|
#if CONFIG_ERROR_CONCEALMENT
|
|
|
|
/* swap the mode infos to storage for future error concealment */
|
|
|
|
if (pbi->ec_enabled && pbi->common.prev_mi)
|
|
|
|
{
|
2011-09-29 11:17:09 +04:00
|
|
|
MODE_INFO* tmp = pbi->common.prev_mi;
|
2011-05-02 17:30:51 +04:00
|
|
|
int row, col;
|
|
|
|
pbi->common.prev_mi = pbi->common.mi;
|
|
|
|
pbi->common.mi = tmp;
|
|
|
|
|
|
|
|
/* Propagate the segment_ids to the next frame */
|
|
|
|
for (row = 0; row < pbi->common.mb_rows; ++row)
|
|
|
|
{
|
|
|
|
for (col = 0; col < pbi->common.mb_cols; ++col)
|
|
|
|
{
|
|
|
|
const int i = row*pbi->common.mode_info_stride + col;
|
|
|
|
pbi->common.mi[i].mbmi.segment_id =
|
|
|
|
pbi->common.prev_mi[i].mbmi.segment_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-10-28 03:04:02 +04:00
|
|
|
/*vp8_print_modes_and_motion_vectors( cm->mi, cm->mb_rows,cm->mb_cols, cm->current_video_frame);*/
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
if (cm->show_frame)
|
|
|
|
cm->current_video_frame++;
|
|
|
|
|
|
|
|
pbi->ready_for_new_data = 0;
|
|
|
|
pbi->last_time_stamp = time_stamp;
|
2011-09-29 11:17:09 +04:00
|
|
|
pbi->num_fragments = 0;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
{
|
|
|
|
int i;
|
2011-07-26 05:44:59 +04:00
|
|
|
int64_t earliest_time = pbi->dr[0].time_stamp;
|
|
|
|
int64_t latest_time = pbi->dr[0].time_stamp;
|
|
|
|
int64_t time_diff = 0;
|
2010-05-18 19:58:33 +04:00
|
|
|
int bytes = 0;
|
|
|
|
|
|
|
|
pbi->dr[pbi->common.current_video_frame&0xf].size = pbi->bc.pos + pbi->bc2.pos + 4;;
|
|
|
|
pbi->dr[pbi->common.current_video_frame&0xf].time_stamp = time_stamp;
|
|
|
|
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
{
|
|
|
|
|
|
|
|
bytes += pbi->dr[i].size;
|
|
|
|
|
|
|
|
if (pbi->dr[i].time_stamp < earliest_time)
|
|
|
|
earliest_time = pbi->dr[i].time_stamp;
|
|
|
|
|
|
|
|
if (pbi->dr[i].time_stamp > latest_time)
|
|
|
|
latest_time = pbi->dr[i].time_stamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
time_diff = latest_time - earliest_time;
|
|
|
|
|
|
|
|
if (time_diff > 0)
|
|
|
|
{
|
|
|
|
pbi->common.bitrate = 80000.00 * bytes / time_diff ;
|
|
|
|
pbi->common.framerate = 160000000.00 / time_diff ;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_ARMV7
|
Add runtime CPU detection support for ARM.
The primary goal is to allow a binary to be built which supports
NEON, but can fall back to non-NEON routines, since some Android
devices do not have NEON, even if they are otherwise ARMv7 (e.g.,
Tegra).
The configure-generated flags HAVE_ARMV7, etc., are used to decide
which versions of each function to build, and when
CONFIG_RUNTIME_CPU_DETECT is enabled, the correct version is chosen
at run time.
In order for this to work, the CFLAGS must be set to something
appropriate (e.g., without -mfpu=neon for ARMv7, and with
appropriate -march and -mcpu for even earlier configurations), or
the native C code will not be able to run.
The ASFLAGS must remain set for the most advanced instruction set
required at build time, since the ARM assembler will refuse to emit
them otherwise.
I have not attempted to make any changes to configure to do this
automatically.
Doing so will probably require the addition of new configure options.
Many of the hooks for RTCD on ARM were already there, but a lot of
the code had bit-rotted, and a good deal of the ARM-specific code
is not integrated into the RTCD structs at all.
I did not try to resolve the latter, merely to add the minimal amount
of protection around them to allow RTCD to work.
Those functions that were called based on an ifdef at the calling
site were expanded to check the RTCD flags at that site, but they
should be added to an RTCD struct somewhere in the future.
The functions invoked with global function pointers still are, but
these should be moved into an RTCD struct for thread safety (I
believe every platform currently supported has atomic pointer
stores, but this is not guaranteed).
The encoder's boolhuff functions did not even have _c and armv7
suffixes, and the correct version was resolved at link time.
The token packing functions did have appropriate suffixes, but the
version was selected with a define, with no associated RTCD struct.
However, for both of these, the only armv7 instruction they actually
used was rbit, and this was completely superfluous, so I reworked
them to avoid it.
The only non-ARMv4 instruction remaining in them is clz, which is
ARMv5 (not even ARMv5TE is required).
Considering that there are no ARM-specific configs which are not at
least ARMv5TE, I did not try to detect these at runtime, and simply
enable them for ARMv5 and above.
Finally, the NEON register saving code was completely non-reentrant,
since it saved the registers to a global, static variable.
I moved the storage for this onto the stack.
A single binary built with this code was tested on an ARM11 (ARMv6)
and a Cortex A8 (ARMv7 w/NEON), for both the encoder and decoder,
and produced identical output, while using the correct accelerated
functions on each.
I did not test on any earlier processors.
Change-Id: I45cbd63a614f4554c3b325c45d46c0806f009eaa
2010-10-21 02:39:11 +04:00
|
|
|
#if CONFIG_RUNTIME_CPU_DETECT
|
|
|
|
if (cm->rtcd.flags & HAS_NEON)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
vp8_pop_neon(dx_store_reg);
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
#endif
|
|
|
|
pbi->common.error.setjmp = 0;
|
|
|
|
return retcode;
|
|
|
|
}
|
2011-12-21 04:54:54 +04:00
|
|
|
int vp8dx_get_raw_frame(VP8D_COMP *pbi, YV12_BUFFER_CONFIG *sd, int64_t *time_stamp, int64_t *time_end_stamp, vp8_ppflags_t *flags)
|
2010-05-18 19:58:33 +04:00
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (pbi->ready_for_new_data == 1)
|
|
|
|
return ret;
|
|
|
|
|
2010-10-28 03:04:02 +04:00
|
|
|
/* ie no raw frame to show!!! */
|
2010-05-18 19:58:33 +04:00
|
|
|
if (pbi->common.show_frame == 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
pbi->ready_for_new_data = 1;
|
|
|
|
*time_stamp = pbi->last_time_stamp;
|
|
|
|
*time_end_stamp = 0;
|
|
|
|
|
|
|
|
sd->clrtype = pbi->common.clr_type;
|
|
|
|
#if CONFIG_POSTPROC
|
2010-11-05 02:03:36 +03:00
|
|
|
ret = vp8_post_proc_frame(&pbi->common, sd, flags);
|
2010-05-18 19:58:33 +04:00
|
|
|
#else
|
|
|
|
|
|
|
|
if (pbi->common.frame_to_show)
|
|
|
|
{
|
|
|
|
*sd = *pbi->common.frame_to_show;
|
|
|
|
sd->y_width = pbi->common.Width;
|
|
|
|
sd->y_height = pbi->common.Height;
|
|
|
|
sd->uv_height = pbi->common.Height / 2;
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
|
2010-10-28 03:04:02 +04:00
|
|
|
#endif /*!CONFIG_POSTPROC*/
|
2010-05-18 19:58:33 +04:00
|
|
|
vp8_clear_system_state();
|
|
|
|
return ret;
|
|
|
|
}
|