You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

158 lines
6.2KB

  1. /*
  2. * H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder
  3. * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * H.264 / AVC / MPEG4 part10 codec.
  24. * non-MMX i386-specific optimizations for H.264
  25. * @author Michael Niedermayer <michaelni@gmx.at>
  26. */
  27. #ifndef AVCODEC_X86_H264_I386_H
  28. #define AVCODEC_X86_H264_I386_H
  29. #include <stddef.h>
  30. #include "libavcodec/cabac.h"
  31. #include "cabac.h"
  32. //FIXME use some macros to avoid duplicating get_cabac (cannot be done yet
  33. //as that would make optimization work hard)
  34. #if HAVE_7REGS && !defined(BROKEN_RELOCATIONS)
  35. static int decode_significance_x86(CABACContext *c, int max_coeff,
  36. uint8_t *significant_coeff_ctx_base,
  37. int *index, x86_reg last_off){
  38. void *end= significant_coeff_ctx_base + max_coeff - 1;
  39. int minusstart= -(intptr_t)significant_coeff_ctx_base;
  40. int minusindex= 4-(intptr_t)index;
  41. int bit;
  42. x86_reg coeff_count;
  43. __asm__ volatile(
  44. "3: \n\t"
  45. BRANCHLESS_GET_CABAC("%4", "(%1)", "%3", "%w3",
  46. "%5", "%k0", "%b0",
  47. "%a11(%6)", "%a12(%6)")
  48. "test $1, %4 \n\t"
  49. " jz 4f \n\t"
  50. "add %10, %1 \n\t"
  51. BRANCHLESS_GET_CABAC("%4", "(%1)", "%3", "%w3",
  52. "%5", "%k0", "%b0",
  53. "%a11(%6)", "%a12(%6)")
  54. "sub %10, %1 \n\t"
  55. "mov %2, %0 \n\t"
  56. "movl %7, %%ecx \n\t"
  57. "add %1, %%"REG_c" \n\t"
  58. "movl %%ecx, (%0) \n\t"
  59. "test $1, %4 \n\t"
  60. " jnz 5f \n\t"
  61. "add"OPSIZE" $4, %2 \n\t"
  62. "4: \n\t"
  63. "add $1, %1 \n\t"
  64. "cmp %8, %1 \n\t"
  65. " jb 3b \n\t"
  66. "mov %2, %0 \n\t"
  67. "movl %7, %%ecx \n\t"
  68. "add %1, %%"REG_c" \n\t"
  69. "movl %%ecx, (%0) \n\t"
  70. "5: \n\t"
  71. "add %9, %k0 \n\t"
  72. "shr $2, %k0 \n\t"
  73. : "=&q"(coeff_count), "+r"(significant_coeff_ctx_base), "+m"(index),
  74. "+&r"(c->low), "=&r"(bit), "+&r"(c->range)
  75. : "r"(c), "m"(minusstart), "m"(end), "m"(minusindex), "m"(last_off),
  76. "i"(offsetof(CABACContext, bytestream)),
  77. "i"(offsetof(CABACContext, bytestream_end))
  78. : "%"REG_c, "memory"
  79. );
  80. return coeff_count;
  81. }
  82. static int decode_significance_8x8_x86(CABACContext *c,
  83. uint8_t *significant_coeff_ctx_base,
  84. int *index, uint8_t *last_coeff_ctx_base, const uint8_t *sig_off){
  85. int minusindex= 4-(intptr_t)index;
  86. int bit;
  87. x86_reg coeff_count;
  88. x86_reg last=0;
  89. x86_reg state;
  90. __asm__ volatile(
  91. "mov %1, %6 \n\t"
  92. "3: \n\t"
  93. "mov %10, %0 \n\t"
  94. "movzbl (%0, %6), %k6 \n\t"
  95. "add %9, %6 \n\t"
  96. BRANCHLESS_GET_CABAC("%4", "(%6)", "%3", "%w3",
  97. "%5", "%k0", "%b0",
  98. "%a12(%7)", "%a13(%7)")
  99. "mov %1, %k6 \n\t"
  100. "test $1, %4 \n\t"
  101. " jz 4f \n\t"
  102. "movzbl "MANGLE(last_coeff_flag_offset_8x8)"(%k6), %k6\n\t"
  103. "add %11, %6 \n\t"
  104. BRANCHLESS_GET_CABAC("%4", "(%6)", "%3", "%w3",
  105. "%5", "%k0", "%b0",
  106. "%a12(%7)", "%a13(%7)")
  107. "mov %2, %0 \n\t"
  108. "mov %1, %k6 \n\t"
  109. "movl %k6, (%0) \n\t"
  110. "test $1, %4 \n\t"
  111. " jnz 5f \n\t"
  112. "add"OPSIZE" $4, %2 \n\t"
  113. "4: \n\t"
  114. "addl $1, %k6 \n\t"
  115. "mov %k6, %1 \n\t"
  116. "cmpl $63, %k6 \n\t"
  117. " jb 3b \n\t"
  118. "mov %2, %0 \n\t"
  119. "movl %k6, (%0) \n\t"
  120. "5: \n\t"
  121. "addl %8, %k0 \n\t"
  122. "shr $2, %k0 \n\t"
  123. : "=&q"(coeff_count), "+m"(last), "+m"(index), "+&r"(c->low),
  124. "=&r"(bit), "+&r"(c->range), "=&r"(state)
  125. : "r"(c), "m"(minusindex), "m"(significant_coeff_ctx_base),
  126. "m"(sig_off), "m"(last_coeff_ctx_base),
  127. "i"(offsetof(CABACContext, bytestream)),
  128. "i"(offsetof(CABACContext, bytestream_end))
  129. : "%"REG_c, "memory"
  130. );
  131. return coeff_count;
  132. }
  133. #endif /* HAVE_7REGS && !defined(BROKEN_RELOCATIONS) */
  134. #endif /* AVCODEC_X86_H264_I386_H */