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.

218 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. #include "libavutil/attributes.h"
  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. uint8_t ff_mpeg12_static_rl_table_store[2][2][2*MAX_RUN + MAX_LEVEL + 3];
  40. #define INIT_2D_VLC_RL(rl, static_size)\
  41. {\
  42. static RL_VLC_ELEM rl_vlc_table[static_size];\
  43. INIT_VLC_STATIC(&rl.vlc, TEX_VLC_BITS, rl.n + 2,\
  44. &rl.table_vlc[0][1], 4, 2,\
  45. &rl.table_vlc[0][0], 4, 2, static_size);\
  46. \
  47. rl.rl_vlc[0] = rl_vlc_table;\
  48. init_2d_vlc_rl(&rl);\
  49. }
  50. static av_cold void init_2d_vlc_rl(RLTable *rl)
  51. {
  52. int i;
  53. for (i = 0; i < rl->vlc.table_size; i++) {
  54. int code = rl->vlc.table[i][0];
  55. int len = rl->vlc.table[i][1];
  56. int level, run;
  57. if (len == 0) { // illegal code
  58. run = 65;
  59. level = MAX_LEVEL;
  60. } else if (len<0) { //more bits needed
  61. run = 0;
  62. level = code;
  63. } else {
  64. if (code == rl->n) { //esc
  65. run = 65;
  66. level = 0;
  67. } else if (code == rl->n+1) { //eob
  68. run = 0;
  69. level = 127;
  70. } else {
  71. run = rl->table_run [code] + 1;
  72. level = rl->table_level[code];
  73. }
  74. }
  75. rl->rl_vlc[0][i].len = len;
  76. rl->rl_vlc[0][i].level = level;
  77. rl->rl_vlc[0][i].run = run;
  78. }
  79. }
  80. av_cold void ff_mpeg12_common_init(MpegEncContext *s)
  81. {
  82. s->y_dc_scale_table =
  83. s->c_dc_scale_table = ff_mpeg2_dc_scale_table[s->intra_dc_precision];
  84. }
  85. void ff_mpeg1_clean_buffers(MpegEncContext *s)
  86. {
  87. s->last_dc[0] = 1 << (7 + s->intra_dc_precision);
  88. s->last_dc[1] = s->last_dc[0];
  89. s->last_dc[2] = s->last_dc[0];
  90. memset(s->last_mv, 0, sizeof(s->last_mv));
  91. }
  92. /******************************************/
  93. /* decoding */
  94. VLC ff_mv_vlc;
  95. VLC ff_dc_lum_vlc;
  96. VLC ff_dc_chroma_vlc;
  97. VLC ff_mbincr_vlc;
  98. VLC ff_mb_ptype_vlc;
  99. VLC ff_mb_btype_vlc;
  100. VLC ff_mb_pat_vlc;
  101. av_cold void ff_mpeg12_init_vlcs(void)
  102. {
  103. static int done = 0;
  104. if (!done) {
  105. done = 1;
  106. INIT_VLC_STATIC(&ff_dc_lum_vlc, DC_VLC_BITS, 12,
  107. ff_mpeg12_vlc_dc_lum_bits, 1, 1,
  108. ff_mpeg12_vlc_dc_lum_code, 2, 2, 512);
  109. INIT_VLC_STATIC(&ff_dc_chroma_vlc, DC_VLC_BITS, 12,
  110. ff_mpeg12_vlc_dc_chroma_bits, 1, 1,
  111. ff_mpeg12_vlc_dc_chroma_code, 2, 2, 514);
  112. INIT_VLC_STATIC(&ff_mv_vlc, MV_VLC_BITS, 17,
  113. &ff_mpeg12_mbMotionVectorTable[0][1], 2, 1,
  114. &ff_mpeg12_mbMotionVectorTable[0][0], 2, 1, 518);
  115. INIT_VLC_STATIC(&ff_mbincr_vlc, MBINCR_VLC_BITS, 36,
  116. &ff_mpeg12_mbAddrIncrTable[0][1], 2, 1,
  117. &ff_mpeg12_mbAddrIncrTable[0][0], 2, 1, 538);
  118. INIT_VLC_STATIC(&ff_mb_pat_vlc, MB_PAT_VLC_BITS, 64,
  119. &ff_mpeg12_mbPatTable[0][1], 2, 1,
  120. &ff_mpeg12_mbPatTable[0][0], 2, 1, 512);
  121. INIT_VLC_STATIC(&ff_mb_ptype_vlc, MB_PTYPE_VLC_BITS, 7,
  122. &table_mb_ptype[0][1], 2, 1,
  123. &table_mb_ptype[0][0], 2, 1, 64);
  124. INIT_VLC_STATIC(&ff_mb_btype_vlc, MB_BTYPE_VLC_BITS, 11,
  125. &table_mb_btype[0][1], 2, 1,
  126. &table_mb_btype[0][0], 2, 1, 64);
  127. ff_init_rl(&ff_rl_mpeg1, ff_mpeg12_static_rl_table_store[0]);
  128. ff_init_rl(&ff_rl_mpeg2, ff_mpeg12_static_rl_table_store[1]);
  129. INIT_2D_VLC_RL(ff_rl_mpeg1, 680);
  130. INIT_2D_VLC_RL(ff_rl_mpeg2, 674);
  131. }
  132. }
  133. /**
  134. * Find the end of the current frame in the bitstream.
  135. * @return the position of the first byte of the next frame, or -1
  136. */
  137. int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, AVCodecParserContext *s)
  138. {
  139. int i;
  140. uint32_t state = pc->state;
  141. /* EOF considered as end of frame */
  142. if (buf_size == 0)
  143. return 0;
  144. /*
  145. 0 frame start -> 1/4
  146. 1 first_SEQEXT -> 0/2
  147. 2 first field start -> 3/0
  148. 3 second_SEQEXT -> 2/0
  149. 4 searching end
  150. */
  151. for (i = 0; i < buf_size; i++) {
  152. assert(pc->frame_start_found >= 0 && pc->frame_start_found <= 4);
  153. if (pc->frame_start_found & 1) {
  154. if (state == EXT_START_CODE && (buf[i] & 0xF0) != 0x80)
  155. pc->frame_start_found--;
  156. else if (state == EXT_START_CODE + 2) {
  157. if ((buf[i] & 3) == 3)
  158. pc->frame_start_found = 0;
  159. else
  160. pc->frame_start_found = (pc->frame_start_found + 1) & 3;
  161. }
  162. state++;
  163. } else {
  164. i = avpriv_find_start_code(buf + i, buf + buf_size, &state) - buf - 1;
  165. if (pc->frame_start_found == 0 && state >= SLICE_MIN_START_CODE && state <= SLICE_MAX_START_CODE) {
  166. i++;
  167. pc->frame_start_found = 4;
  168. }
  169. if (state == SEQ_END_CODE) {
  170. pc->frame_start_found = 0;
  171. pc->state=-1;
  172. return i+1;
  173. }
  174. if (pc->frame_start_found == 2 && state == SEQ_START_CODE)
  175. pc->frame_start_found = 0;
  176. if (pc->frame_start_found < 4 && state == EXT_START_CODE)
  177. pc->frame_start_found++;
  178. if (pc->frame_start_found == 4 && (state & 0xFFFFFF00) == 0x100) {
  179. if (state < SLICE_MIN_START_CODE || state > SLICE_MAX_START_CODE) {
  180. pc->frame_start_found = 0;
  181. pc->state = -1;
  182. return i - 3;
  183. }
  184. }
  185. if (pc->frame_start_found == 0 && s && state == PICTURE_START_CODE) {
  186. ff_fetch_timestamp(s, i - 3, 1);
  187. }
  188. }
  189. }
  190. pc->state = state;
  191. return END_NOT_FOUND;
  192. }