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.

221 lines
6.8KB

  1. /*
  2. * MPEG-1/2 decoder
  3. * Copyright (c) 2000, 2001 Fabrice Bellard
  4. * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  24. * MPEG-1/2 decoder
  25. */
  26. //#define DEBUG
  27. #include "internal.h"
  28. #include "avcodec.h"
  29. #include "dsputil.h"
  30. #include "mpegvideo.h"
  31. #include "error_resilience.h"
  32. #include "mpeg12.h"
  33. #include "mpeg12data.h"
  34. #include "mpeg12decdata.h"
  35. #include "bytestream.h"
  36. #include "vdpau_internal.h"
  37. #include "xvmc_internal.h"
  38. #include "thread.h"
  39. //#undef NDEBUG
  40. //#include <assert.h>
  41. uint8_t ff_mpeg12_static_rl_table_store[2][2][2*MAX_RUN + MAX_LEVEL + 3];
  42. #define INIT_2D_VLC_RL(rl, static_size)\
  43. {\
  44. static RL_VLC_ELEM rl_vlc_table[static_size];\
  45. INIT_VLC_STATIC(&rl.vlc, TEX_VLC_BITS, rl.n + 2,\
  46. &rl.table_vlc[0][1], 4, 2,\
  47. &rl.table_vlc[0][0], 4, 2, static_size);\
  48. \
  49. rl.rl_vlc[0] = rl_vlc_table;\
  50. init_2d_vlc_rl(&rl);\
  51. }
  52. static void init_2d_vlc_rl(RLTable *rl)
  53. {
  54. int i;
  55. for (i = 0; i < rl->vlc.table_size; i++) {
  56. int code = rl->vlc.table[i][0];
  57. int len = rl->vlc.table[i][1];
  58. int level, run;
  59. if (len == 0) { // illegal code
  60. run = 65;
  61. level = MAX_LEVEL;
  62. } else if (len<0) { //more bits needed
  63. run = 0;
  64. level = code;
  65. } else {
  66. if (code == rl->n) { //esc
  67. run = 65;
  68. level = 0;
  69. } else if (code == rl->n+1) { //eob
  70. run = 0;
  71. level = 127;
  72. } else {
  73. run = rl->table_run [code] + 1;
  74. level = rl->table_level[code];
  75. }
  76. }
  77. rl->rl_vlc[0][i].len = len;
  78. rl->rl_vlc[0][i].level = level;
  79. rl->rl_vlc[0][i].run = run;
  80. }
  81. }
  82. void ff_mpeg12_common_init(MpegEncContext *s)
  83. {
  84. s->y_dc_scale_table =
  85. s->c_dc_scale_table = ff_mpeg2_dc_scale_table[s->intra_dc_precision];
  86. }
  87. void ff_mpeg1_clean_buffers(MpegEncContext *s)
  88. {
  89. s->last_dc[0] = 1 << (7 + s->intra_dc_precision);
  90. s->last_dc[1] = s->last_dc[0];
  91. s->last_dc[2] = s->last_dc[0];
  92. memset(s->last_mv, 0, sizeof(s->last_mv));
  93. }
  94. /******************************************/
  95. /* decoding */
  96. VLC ff_mv_vlc;
  97. VLC ff_dc_lum_vlc;
  98. VLC ff_dc_chroma_vlc;
  99. VLC ff_mbincr_vlc;
  100. VLC ff_mb_ptype_vlc;
  101. VLC ff_mb_btype_vlc;
  102. VLC ff_mb_pat_vlc;
  103. av_cold void ff_mpeg12_init_vlcs(void)
  104. {
  105. static int done = 0;
  106. if (!done) {
  107. done = 1;
  108. INIT_VLC_STATIC(&ff_dc_lum_vlc, DC_VLC_BITS, 12,
  109. ff_mpeg12_vlc_dc_lum_bits, 1, 1,
  110. ff_mpeg12_vlc_dc_lum_code, 2, 2, 512);
  111. INIT_VLC_STATIC(&ff_dc_chroma_vlc, DC_VLC_BITS, 12,
  112. ff_mpeg12_vlc_dc_chroma_bits, 1, 1,
  113. ff_mpeg12_vlc_dc_chroma_code, 2, 2, 514);
  114. INIT_VLC_STATIC(&ff_mv_vlc, MV_VLC_BITS, 17,
  115. &ff_mpeg12_mbMotionVectorTable[0][1], 2, 1,
  116. &ff_mpeg12_mbMotionVectorTable[0][0], 2, 1, 518);
  117. INIT_VLC_STATIC(&ff_mbincr_vlc, MBINCR_VLC_BITS, 36,
  118. &ff_mpeg12_mbAddrIncrTable[0][1], 2, 1,
  119. &ff_mpeg12_mbAddrIncrTable[0][0], 2, 1, 538);
  120. INIT_VLC_STATIC(&ff_mb_pat_vlc, MB_PAT_VLC_BITS, 64,
  121. &ff_mpeg12_mbPatTable[0][1], 2, 1,
  122. &ff_mpeg12_mbPatTable[0][0], 2, 1, 512);
  123. INIT_VLC_STATIC(&ff_mb_ptype_vlc, MB_PTYPE_VLC_BITS, 7,
  124. &table_mb_ptype[0][1], 2, 1,
  125. &table_mb_ptype[0][0], 2, 1, 64);
  126. INIT_VLC_STATIC(&ff_mb_btype_vlc, MB_BTYPE_VLC_BITS, 11,
  127. &table_mb_btype[0][1], 2, 1,
  128. &table_mb_btype[0][0], 2, 1, 64);
  129. ff_init_rl(&ff_rl_mpeg1, ff_mpeg12_static_rl_table_store[0]);
  130. ff_init_rl(&ff_rl_mpeg2, ff_mpeg12_static_rl_table_store[1]);
  131. INIT_2D_VLC_RL(ff_rl_mpeg1, 680);
  132. INIT_2D_VLC_RL(ff_rl_mpeg2, 674);
  133. }
  134. }
  135. /**
  136. * Find the end of the current frame in the bitstream.
  137. * @return the position of the first byte of the next frame, or -1
  138. */
  139. int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, AVCodecParserContext *s)
  140. {
  141. int i;
  142. uint32_t state = pc->state;
  143. /* EOF considered as end of frame */
  144. if (buf_size == 0)
  145. return 0;
  146. /*
  147. 0 frame start -> 1/4
  148. 1 first_SEQEXT -> 0/2
  149. 2 first field start -> 3/0
  150. 3 second_SEQEXT -> 2/0
  151. 4 searching end
  152. */
  153. for (i = 0; i < buf_size; i++) {
  154. assert(pc->frame_start_found >= 0 && pc->frame_start_found <= 4);
  155. if (pc->frame_start_found & 1) {
  156. if (state == EXT_START_CODE && (buf[i] & 0xF0) != 0x80)
  157. pc->frame_start_found--;
  158. else if (state == EXT_START_CODE + 2) {
  159. if ((buf[i] & 3) == 3)
  160. pc->frame_start_found = 0;
  161. else
  162. pc->frame_start_found = (pc->frame_start_found + 1) & 3;
  163. }
  164. state++;
  165. } else {
  166. i = avpriv_find_start_code(buf + i, buf + buf_size, &state) - buf - 1;
  167. if (pc->frame_start_found == 0 && state >= SLICE_MIN_START_CODE && state <= SLICE_MAX_START_CODE) {
  168. i++;
  169. pc->frame_start_found = 4;
  170. }
  171. if (state == SEQ_END_CODE) {
  172. pc->frame_start_found = 0;
  173. pc->state=-1;
  174. return i+1;
  175. }
  176. if (pc->frame_start_found == 2 && state == SEQ_START_CODE)
  177. pc->frame_start_found = 0;
  178. if (pc->frame_start_found < 4 && state == EXT_START_CODE)
  179. pc->frame_start_found++;
  180. if (pc->frame_start_found == 4 && (state & 0xFFFFFF00) == 0x100) {
  181. if (state < SLICE_MIN_START_CODE || state > SLICE_MAX_START_CODE) {
  182. pc->frame_start_found = 0;
  183. pc->state = -1;
  184. return i - 3;
  185. }
  186. }
  187. if (pc->frame_start_found == 0 && s && state == PICTURE_START_CODE) {
  188. ff_fetch_timestamp(s, i - 3, 1);
  189. }
  190. }
  191. }
  192. pc->state = state;
  193. return END_NOT_FOUND;
  194. }