2008-04-16 07:40:21 +03:00
|
|
|
/*
|
|
|
|
* H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder
|
|
|
|
* Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2008-04-16 07:40:21 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2008-04-16 07:40:21 +03:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2008-04-16 07:40:21 +03:00
|
|
|
* 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 Lesser General Public
|
2011-03-18 19:35:10 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2008-04-16 07:40:21 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 17:45:34 +03:00
|
|
|
* @file
|
2008-04-16 07:40:21 +03:00
|
|
|
* H.264 / AVC / MPEG4 part10 codec.
|
|
|
|
* non-MMX i386-specific optimizations for H.264
|
|
|
|
* @author Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*/
|
|
|
|
|
2008-12-22 11:12:42 +02:00
|
|
|
#ifndef AVCODEC_X86_H264_I386_H
|
|
|
|
#define AVCODEC_X86_H264_I386_H
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2011-06-20 03:54:32 +03:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2008-05-09 14:56:36 +03:00
|
|
|
#include "libavcodec/cabac.h"
|
2011-06-20 12:53:41 +03:00
|
|
|
#include "cabac.h"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2008-04-16 23:43:37 +03:00
|
|
|
//FIXME use some macros to avoid duplicating get_cabac (cannot be done yet
|
|
|
|
//as that would make optimization work hard)
|
2012-04-27 23:19:39 +03:00
|
|
|
#if HAVE_7REGS
|
2008-04-16 23:43:37 +03:00
|
|
|
static int decode_significance_x86(CABACContext *c, int max_coeff,
|
|
|
|
uint8_t *significant_coeff_ctx_base,
|
2011-06-03 11:12:28 +03:00
|
|
|
int *index, x86_reg last_off){
|
2008-04-16 07:40:21 +03:00
|
|
|
void *end= significant_coeff_ctx_base + max_coeff - 1;
|
2011-06-20 12:24:26 +03:00
|
|
|
int minusstart= -(intptr_t)significant_coeff_ctx_base;
|
|
|
|
int minusindex= 4-(intptr_t)index;
|
2011-06-20 12:06:07 +03:00
|
|
|
int bit;
|
2011-06-20 11:23:26 +03:00
|
|
|
x86_reg coeff_count;
|
2012-04-27 23:19:38 +03:00
|
|
|
|
2012-04-27 23:19:39 +03:00
|
|
|
#ifdef BROKEN_RELOCATIONS
|
|
|
|
void *tables;
|
|
|
|
|
|
|
|
__asm__ volatile(
|
|
|
|
"lea "MANGLE(ff_h264_cabac_tables)", %0 \n\t"
|
|
|
|
: "=&r"(tables)
|
|
|
|
);
|
|
|
|
#endif
|
|
|
|
|
2008-10-16 16:34:09 +03:00
|
|
|
__asm__ volatile(
|
2012-03-17 19:04:32 +03:00
|
|
|
"3: \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2012-04-27 23:19:39 +03:00
|
|
|
BRANCHLESS_GET_CABAC("%4", "%q4", "(%1)", "%3", "%w3",
|
|
|
|
"%5", "%q5", "%k0", "%b0",
|
|
|
|
"%a11(%6)", "%a12(%6)", "%a13", "%a14", "%a15", "%16")
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2011-06-20 12:06:07 +03:00
|
|
|
"test $1, %4 \n\t"
|
2012-03-17 19:04:32 +03:00
|
|
|
" jz 4f \n\t"
|
2011-06-20 12:12:29 +03:00
|
|
|
"add %10, %1 \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2012-04-27 23:19:39 +03:00
|
|
|
BRANCHLESS_GET_CABAC("%4", "%q4", "(%1)", "%3", "%w3",
|
|
|
|
"%5", "%q5", "%k0", "%b0",
|
|
|
|
"%a11(%6)", "%a12(%6)", "%a13", "%a14", "%a15", "%16")
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2011-06-20 12:12:29 +03:00
|
|
|
"sub %10, %1 \n\t"
|
2011-06-20 11:23:26 +03:00
|
|
|
"mov %2, %0 \n\t"
|
2011-06-20 12:12:29 +03:00
|
|
|
"movl %7, %%ecx \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
"add %1, %%"REG_c" \n\t"
|
2011-06-20 11:23:26 +03:00
|
|
|
"movl %%ecx, (%0) \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2011-06-20 12:06:07 +03:00
|
|
|
"test $1, %4 \n\t"
|
2012-03-17 19:04:32 +03:00
|
|
|
" jnz 5f \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2011-07-29 03:55:58 +03:00
|
|
|
"add"OPSIZE" $4, %2 \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2012-03-17 19:04:32 +03:00
|
|
|
"4: \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
"add $1, %1 \n\t"
|
2011-06-20 12:12:29 +03:00
|
|
|
"cmp %8, %1 \n\t"
|
2012-03-17 19:04:32 +03:00
|
|
|
" jb 3b \n\t"
|
2011-06-20 11:23:26 +03:00
|
|
|
"mov %2, %0 \n\t"
|
2011-06-20 12:12:29 +03:00
|
|
|
"movl %7, %%ecx \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
"add %1, %%"REG_c" \n\t"
|
2011-06-20 11:23:26 +03:00
|
|
|
"movl %%ecx, (%0) \n\t"
|
2012-03-17 19:04:32 +03:00
|
|
|
"5: \n\t"
|
2011-06-20 12:12:29 +03:00
|
|
|
"add %9, %k0 \n\t"
|
2011-06-20 11:23:26 +03:00
|
|
|
"shr $2, %k0 \n\t"
|
2012-03-17 19:02:44 +03:00
|
|
|
: "=&q"(coeff_count), "+r"(significant_coeff_ctx_base), "+m"(index),
|
|
|
|
"+&r"(c->low), "=&r"(bit), "+&r"(c->range)
|
|
|
|
: "r"(c), "m"(minusstart), "m"(end), "m"(minusindex), "m"(last_off),
|
2012-03-17 19:09:41 +03:00
|
|
|
"i"(offsetof(CABACContext, bytestream)),
|
2012-04-27 23:19:38 +03:00
|
|
|
"i"(offsetof(CABACContext, bytestream_end)),
|
|
|
|
"i"(H264_NORM_SHIFT_OFFSET),
|
|
|
|
"i"(H264_LPS_RANGE_OFFSET),
|
2012-04-27 23:19:39 +03:00
|
|
|
"i"(H264_MLPS_STATE_OFFSET) TABLES_ARG
|
2011-06-20 12:12:29 +03:00
|
|
|
: "%"REG_c, "memory"
|
2008-04-16 07:40:21 +03:00
|
|
|
);
|
|
|
|
return coeff_count;
|
|
|
|
}
|
|
|
|
|
2008-04-16 23:43:37 +03:00
|
|
|
static int decode_significance_8x8_x86(CABACContext *c,
|
|
|
|
uint8_t *significant_coeff_ctx_base,
|
2011-07-27 05:08:05 +03:00
|
|
|
int *index, uint8_t *last_coeff_ctx_base, const uint8_t *sig_off){
|
2011-06-20 12:24:26 +03:00
|
|
|
int minusindex= 4-(intptr_t)index;
|
2011-06-20 12:06:07 +03:00
|
|
|
int bit;
|
2011-06-20 11:23:26 +03:00
|
|
|
x86_reg coeff_count;
|
2008-05-09 00:11:24 +03:00
|
|
|
x86_reg last=0;
|
2011-06-20 12:20:15 +03:00
|
|
|
x86_reg state;
|
2012-04-27 23:19:38 +03:00
|
|
|
|
2012-04-27 23:19:39 +03:00
|
|
|
#ifdef BROKEN_RELOCATIONS
|
|
|
|
void *tables;
|
|
|
|
|
|
|
|
__asm__ volatile(
|
|
|
|
"lea "MANGLE(ff_h264_cabac_tables)", %0 \n\t"
|
|
|
|
: "=&r"(tables)
|
|
|
|
);
|
|
|
|
#endif
|
|
|
|
|
2008-10-16 16:34:09 +03:00
|
|
|
__asm__ volatile(
|
2011-06-20 12:20:15 +03:00
|
|
|
"mov %1, %6 \n\t"
|
2012-03-17 19:04:32 +03:00
|
|
|
"3: \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2011-06-20 12:20:15 +03:00
|
|
|
"mov %10, %0 \n\t"
|
|
|
|
"movzbl (%0, %6), %k6 \n\t"
|
|
|
|
"add %9, %6 \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2012-04-27 23:19:39 +03:00
|
|
|
BRANCHLESS_GET_CABAC("%4", "%q4", "(%6)", "%3", "%w3",
|
|
|
|
"%5", "%q5", "%k0", "%b0",
|
|
|
|
"%a12(%7)", "%a13(%7)", "%a14", "%a15", "%a16", "%18")
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2011-06-20 12:20:15 +03:00
|
|
|
"mov %1, %k6 \n\t"
|
2011-06-20 12:06:07 +03:00
|
|
|
"test $1, %4 \n\t"
|
2012-03-17 19:04:32 +03:00
|
|
|
" jz 4f \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2012-04-27 23:19:39 +03:00
|
|
|
#ifdef BROKEN_RELOCATIONS
|
|
|
|
"movzbl %a17(%18, %q6), %k6\n\t"
|
|
|
|
#else
|
2012-04-27 23:19:38 +03:00
|
|
|
"movzbl "MANGLE(ff_h264_cabac_tables)"+%a17(%k6), %k6\n\t"
|
2012-04-27 23:19:39 +03:00
|
|
|
#endif
|
2011-06-20 12:20:15 +03:00
|
|
|
"add %11, %6 \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2012-04-27 23:19:39 +03:00
|
|
|
BRANCHLESS_GET_CABAC("%4", "%q4", "(%6)", "%3", "%w3",
|
|
|
|
"%5", "%q5", "%k0", "%b0",
|
|
|
|
"%a12(%7)", "%a13(%7)", "%a14", "%a15", "%a16", "%18")
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2011-06-20 11:23:26 +03:00
|
|
|
"mov %2, %0 \n\t"
|
2011-06-20 12:20:15 +03:00
|
|
|
"mov %1, %k6 \n\t"
|
|
|
|
"movl %k6, (%0) \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2011-06-20 12:06:07 +03:00
|
|
|
"test $1, %4 \n\t"
|
2012-03-17 19:04:32 +03:00
|
|
|
" jnz 5f \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2011-07-29 03:55:58 +03:00
|
|
|
"add"OPSIZE" $4, %2 \n\t"
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2012-03-17 19:04:32 +03:00
|
|
|
"4: \n\t"
|
2011-06-20 12:20:15 +03:00
|
|
|
"addl $1, %k6 \n\t"
|
|
|
|
"mov %k6, %1 \n\t"
|
|
|
|
"cmpl $63, %k6 \n\t"
|
2012-03-17 19:04:32 +03:00
|
|
|
" jb 3b \n\t"
|
2011-06-20 11:23:26 +03:00
|
|
|
"mov %2, %0 \n\t"
|
2011-06-20 12:20:15 +03:00
|
|
|
"movl %k6, (%0) \n\t"
|
2012-03-17 19:04:32 +03:00
|
|
|
"5: \n\t"
|
2011-06-20 12:20:15 +03:00
|
|
|
"addl %8, %k0 \n\t"
|
2011-06-20 11:23:26 +03:00
|
|
|
"shr $2, %k0 \n\t"
|
2012-03-17 19:02:44 +03:00
|
|
|
: "=&q"(coeff_count), "+m"(last), "+m"(index), "+&r"(c->low),
|
|
|
|
"=&r"(bit), "+&r"(c->range), "=&r"(state)
|
|
|
|
: "r"(c), "m"(minusindex), "m"(significant_coeff_ctx_base),
|
|
|
|
"m"(sig_off), "m"(last_coeff_ctx_base),
|
2012-03-17 19:09:41 +03:00
|
|
|
"i"(offsetof(CABACContext, bytestream)),
|
2012-04-27 23:19:38 +03:00
|
|
|
"i"(offsetof(CABACContext, bytestream_end)),
|
|
|
|
"i"(H264_NORM_SHIFT_OFFSET),
|
|
|
|
"i"(H264_LPS_RANGE_OFFSET),
|
|
|
|
"i"(H264_MLPS_STATE_OFFSET),
|
2012-04-27 23:19:39 +03:00
|
|
|
"i"(H264_LAST_COEFF_FLAG_OFFSET_8x8_OFFSET) TABLES_ARG
|
2011-06-20 12:20:15 +03:00
|
|
|
: "%"REG_c, "memory"
|
2008-04-16 07:40:21 +03:00
|
|
|
);
|
|
|
|
return coeff_count;
|
|
|
|
}
|
2011-12-26 22:47:20 +03:00
|
|
|
#endif /* HAVE_7REGS && !defined(BROKEN_RELOCATIONS) */
|
2008-04-16 07:40:21 +03:00
|
|
|
|
2008-12-22 11:12:42 +02:00
|
|
|
#endif /* AVCODEC_X86_H264_I386_H */
|