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.

340 lines
11KB

  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 FFmpeg.
  7. *
  8. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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 UNCHECKED_BITSTREAM_READER 1
  27. #include "libavutil/attributes.h"
  28. #include "libavutil/avassert.h"
  29. #include "libavutil/timecode.h"
  30. #include "internal.h"
  31. #include "avcodec.h"
  32. #include "mpegvideo.h"
  33. #include "error_resilience.h"
  34. #include "mpeg12.h"
  35. #include "mpeg12data.h"
  36. #include "mpegvideodata.h"
  37. #include "bytestream.h"
  38. #include "thread.h"
  39. uint8_t ff_mpeg12_static_rl_table_store[2][2][2*MAX_RUN + MAX_LEVEL + 3];
  40. static const uint8_t table_mb_ptype[7][2] = {
  41. { 3, 5 }, // 0x01 MB_INTRA
  42. { 1, 2 }, // 0x02 MB_PAT
  43. { 1, 3 }, // 0x08 MB_FOR
  44. { 1, 1 }, // 0x0A MB_FOR|MB_PAT
  45. { 1, 6 }, // 0x11 MB_QUANT|MB_INTRA
  46. { 1, 5 }, // 0x12 MB_QUANT|MB_PAT
  47. { 2, 5 }, // 0x1A MB_QUANT|MB_FOR|MB_PAT
  48. };
  49. static const uint8_t table_mb_btype[11][2] = {
  50. { 3, 5 }, // 0x01 MB_INTRA
  51. { 2, 3 }, // 0x04 MB_BACK
  52. { 3, 3 }, // 0x06 MB_BACK|MB_PAT
  53. { 2, 4 }, // 0x08 MB_FOR
  54. { 3, 4 }, // 0x0A MB_FOR|MB_PAT
  55. { 2, 2 }, // 0x0C MB_FOR|MB_BACK
  56. { 3, 2 }, // 0x0E MB_FOR|MB_BACK|MB_PAT
  57. { 1, 6 }, // 0x11 MB_QUANT|MB_INTRA
  58. { 2, 6 }, // 0x16 MB_QUANT|MB_BACK|MB_PAT
  59. { 3, 6 }, // 0x1A MB_QUANT|MB_FOR|MB_PAT
  60. { 2, 5 }, // 0x1E MB_QUANT|MB_FOR|MB_BACK|MB_PAT
  61. };
  62. #define INIT_2D_VLC_RL(rl, static_size)\
  63. {\
  64. static RL_VLC_ELEM rl_vlc_table[static_size];\
  65. rl.rl_vlc[0] = rl_vlc_table;\
  66. init_2d_vlc_rl(&rl, static_size);\
  67. }
  68. static av_cold void init_2d_vlc_rl(RLTable *rl, unsigned static_size)
  69. {
  70. int i;
  71. VLC_TYPE table[680][2] = {{0}};
  72. VLC vlc = { .table = table, .table_allocated = static_size };
  73. av_assert0(static_size <= FF_ARRAY_ELEMS(table));
  74. init_vlc(&vlc, TEX_VLC_BITS, rl->n + 2, &rl->table_vlc[0][1], 4, 2, &rl->table_vlc[0][0], 4, 2, INIT_VLC_USE_NEW_STATIC);
  75. for (i = 0; i < vlc.table_size; i++) {
  76. int code = vlc.table[i][0];
  77. int len = vlc.table[i][1];
  78. int level, run;
  79. if (len == 0) { // illegal code
  80. run = 65;
  81. level = MAX_LEVEL;
  82. } else if (len<0) { //more bits needed
  83. run = 0;
  84. level = code;
  85. } else {
  86. if (code == rl->n) { //esc
  87. run = 65;
  88. level = 0;
  89. } else if (code == rl->n+1) { //eob
  90. run = 0;
  91. level = 127;
  92. } else {
  93. run = rl->table_run [code] + 1;
  94. level = rl->table_level[code];
  95. }
  96. }
  97. rl->rl_vlc[0][i].len = len;
  98. rl->rl_vlc[0][i].level = level;
  99. rl->rl_vlc[0][i].run = run;
  100. }
  101. }
  102. av_cold void ff_mpeg12_common_init(MpegEncContext *s)
  103. {
  104. s->y_dc_scale_table =
  105. s->c_dc_scale_table = ff_mpeg2_dc_scale_table[s->intra_dc_precision];
  106. }
  107. void ff_mpeg1_clean_buffers(MpegEncContext *s)
  108. {
  109. s->last_dc[0] = 1 << (7 + s->intra_dc_precision);
  110. s->last_dc[1] = s->last_dc[0];
  111. s->last_dc[2] = s->last_dc[0];
  112. memset(s->last_mv, 0, sizeof(s->last_mv));
  113. }
  114. /******************************************/
  115. /* decoding */
  116. VLC ff_mv_vlc;
  117. VLC ff_dc_lum_vlc;
  118. VLC ff_dc_chroma_vlc;
  119. VLC ff_mbincr_vlc;
  120. VLC ff_mb_ptype_vlc;
  121. VLC ff_mb_btype_vlc;
  122. VLC ff_mb_pat_vlc;
  123. av_cold void ff_mpeg12_init_vlcs(void)
  124. {
  125. static int done = 0;
  126. if (!done) {
  127. done = 1;
  128. INIT_VLC_STATIC(&ff_dc_lum_vlc, DC_VLC_BITS, 12,
  129. ff_mpeg12_vlc_dc_lum_bits, 1, 1,
  130. ff_mpeg12_vlc_dc_lum_code, 2, 2, 512);
  131. INIT_VLC_STATIC(&ff_dc_chroma_vlc, DC_VLC_BITS, 12,
  132. ff_mpeg12_vlc_dc_chroma_bits, 1, 1,
  133. ff_mpeg12_vlc_dc_chroma_code, 2, 2, 514);
  134. INIT_VLC_STATIC(&ff_mv_vlc, MV_VLC_BITS, 17,
  135. &ff_mpeg12_mbMotionVectorTable[0][1], 2, 1,
  136. &ff_mpeg12_mbMotionVectorTable[0][0], 2, 1, 518);
  137. INIT_VLC_STATIC(&ff_mbincr_vlc, MBINCR_VLC_BITS, 36,
  138. &ff_mpeg12_mbAddrIncrTable[0][1], 2, 1,
  139. &ff_mpeg12_mbAddrIncrTable[0][0], 2, 1, 538);
  140. INIT_VLC_STATIC(&ff_mb_pat_vlc, MB_PAT_VLC_BITS, 64,
  141. &ff_mpeg12_mbPatTable[0][1], 2, 1,
  142. &ff_mpeg12_mbPatTable[0][0], 2, 1, 512);
  143. INIT_VLC_STATIC(&ff_mb_ptype_vlc, MB_PTYPE_VLC_BITS, 7,
  144. &table_mb_ptype[0][1], 2, 1,
  145. &table_mb_ptype[0][0], 2, 1, 64);
  146. INIT_VLC_STATIC(&ff_mb_btype_vlc, MB_BTYPE_VLC_BITS, 11,
  147. &table_mb_btype[0][1], 2, 1,
  148. &table_mb_btype[0][0], 2, 1, 64);
  149. ff_rl_init(&ff_rl_mpeg1, ff_mpeg12_static_rl_table_store[0]);
  150. ff_rl_init(&ff_rl_mpeg2, ff_mpeg12_static_rl_table_store[1]);
  151. INIT_2D_VLC_RL(ff_rl_mpeg1, 680);
  152. INIT_2D_VLC_RL(ff_rl_mpeg2, 674);
  153. }
  154. }
  155. /**
  156. * Find the end of the current frame in the bitstream.
  157. * @return the position of the first byte of the next frame, or -1
  158. */
  159. int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, AVCodecParserContext *s)
  160. {
  161. int i;
  162. uint32_t state = pc->state;
  163. /* EOF considered as end of frame */
  164. if (buf_size == 0)
  165. return 0;
  166. /*
  167. 0 frame start -> 1/4
  168. 1 first_SEQEXT -> 0/2
  169. 2 first field start -> 3/0
  170. 3 second_SEQEXT -> 2/0
  171. 4 searching end
  172. */
  173. for (i = 0; i < buf_size; i++) {
  174. av_assert1(pc->frame_start_found >= 0 && pc->frame_start_found <= 4);
  175. if (pc->frame_start_found & 1) {
  176. if (state == EXT_START_CODE && (buf[i] & 0xF0) != 0x80)
  177. pc->frame_start_found--;
  178. else if (state == EXT_START_CODE + 2) {
  179. if ((buf[i] & 3) == 3)
  180. pc->frame_start_found = 0;
  181. else
  182. pc->frame_start_found = (pc->frame_start_found + 1) & 3;
  183. }
  184. state++;
  185. } else {
  186. i = avpriv_find_start_code(buf + i, buf + buf_size, &state) - buf - 1;
  187. if (pc->frame_start_found == 0 && state >= SLICE_MIN_START_CODE && state <= SLICE_MAX_START_CODE) {
  188. i++;
  189. pc->frame_start_found = 4;
  190. }
  191. if (state == SEQ_END_CODE) {
  192. pc->frame_start_found = 0;
  193. pc->state=-1;
  194. return i+1;
  195. }
  196. if (pc->frame_start_found == 2 && state == SEQ_START_CODE)
  197. pc->frame_start_found = 0;
  198. if (pc->frame_start_found < 4 && state == EXT_START_CODE)
  199. pc->frame_start_found++;
  200. if (pc->frame_start_found == 4 && (state & 0xFFFFFF00) == 0x100) {
  201. if (state < SLICE_MIN_START_CODE || state > SLICE_MAX_START_CODE) {
  202. pc->frame_start_found = 0;
  203. pc->state = -1;
  204. return i - 3;
  205. }
  206. }
  207. if (pc->frame_start_found == 0 && s && state == PICTURE_START_CODE) {
  208. ff_fetch_timestamp(s, i - 3, 1, i > 3);
  209. }
  210. }
  211. }
  212. pc->state = state;
  213. return END_NOT_FOUND;
  214. }
  215. #define MAX_INDEX (64 - 1)
  216. int ff_mpeg1_decode_block_intra(GetBitContext *gb,
  217. const uint16_t *quant_matrix,
  218. uint8_t *const scantable, int last_dc[3],
  219. int16_t *block, int index, int qscale)
  220. {
  221. int dc, diff, i = 0, component;
  222. RLTable *rl = &ff_rl_mpeg1;
  223. /* DC coefficient */
  224. component = index <= 3 ? 0 : index - 4 + 1;
  225. diff = decode_dc(gb, component);
  226. if (diff >= 0xffff)
  227. return AVERROR_INVALIDDATA;
  228. dc = last_dc[component];
  229. dc += diff;
  230. last_dc[component] = dc;
  231. block[0] = dc * quant_matrix[0];
  232. {
  233. OPEN_READER(re, gb);
  234. UPDATE_CACHE(re, gb);
  235. if (((int32_t)GET_CACHE(re, gb)) <= (int32_t)0xBFFFFFFF)
  236. goto end;
  237. /* now quantify & encode AC coefficients */
  238. while (1) {
  239. int level, run, j;
  240. GET_RL_VLC(level, run, re, gb, rl->rl_vlc[0],
  241. TEX_VLC_BITS, 2, 0);
  242. if (level != 0) {
  243. i += run;
  244. if (i > MAX_INDEX)
  245. break;
  246. j = scantable[i];
  247. level = (level * qscale * quant_matrix[j]) >> 4;
  248. level = (level - 1) | 1;
  249. level = (level ^ SHOW_SBITS(re, gb, 1)) -
  250. SHOW_SBITS(re, gb, 1);
  251. SKIP_BITS(re, gb, 1);
  252. } else {
  253. /* escape */
  254. run = SHOW_UBITS(re, gb, 6) + 1;
  255. LAST_SKIP_BITS(re, gb, 6);
  256. UPDATE_CACHE(re, gb);
  257. level = SHOW_SBITS(re, gb, 8);
  258. SKIP_BITS(re, gb, 8);
  259. if (level == -128) {
  260. level = SHOW_UBITS(re, gb, 8) - 256;
  261. SKIP_BITS(re, gb, 8);
  262. } else if (level == 0) {
  263. level = SHOW_UBITS(re, gb, 8);
  264. SKIP_BITS(re, gb, 8);
  265. }
  266. i += run;
  267. if (i > MAX_INDEX)
  268. break;
  269. j = scantable[i];
  270. if (level < 0) {
  271. level = -level;
  272. level = (level * qscale * quant_matrix[j]) >> 4;
  273. level = (level - 1) | 1;
  274. level = -level;
  275. } else {
  276. level = (level * qscale * quant_matrix[j]) >> 4;
  277. level = (level - 1) | 1;
  278. }
  279. }
  280. block[j] = level;
  281. if (((int32_t)GET_CACHE(re, gb)) <= (int32_t)0xBFFFFFFF)
  282. break;
  283. UPDATE_CACHE(re, gb);
  284. }
  285. end:
  286. LAST_SKIP_BITS(re, gb, 2);
  287. CLOSE_READER(re, gb);
  288. }
  289. if (i > MAX_INDEX)
  290. i = AVERROR_INVALIDDATA;
  291. return i;
  292. }