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.

381 lines
12KB

  1. /*
  2. * Escape 124 Video Decoder
  3. * Copyright (C) 2008 Eli Friedman (eli.friedman@gmail.com)
  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. #define BITSTREAM_READER_LE
  22. #include "avcodec.h"
  23. #include "bitstream.h"
  24. #include "internal.h"
  25. typedef union MacroBlock {
  26. uint16_t pixels[4];
  27. uint32_t pixels32[2];
  28. } MacroBlock;
  29. typedef union SuperBlock {
  30. uint16_t pixels[64];
  31. uint32_t pixels32[32];
  32. } SuperBlock;
  33. typedef struct CodeBook {
  34. unsigned depth;
  35. unsigned size;
  36. MacroBlock* blocks;
  37. } CodeBook;
  38. typedef struct Escape124Context {
  39. AVFrame *frame;
  40. unsigned num_superblocks;
  41. CodeBook codebooks[3];
  42. } Escape124Context;
  43. static int can_safely_read(BitstreamContext *bc, int bits)
  44. {
  45. return bitstream_bits_left(bc) >= bits;
  46. }
  47. /**
  48. * Initialize the decoder
  49. * @param avctx decoder context
  50. * @return 0 success, negative on error
  51. */
  52. static av_cold int escape124_decode_init(AVCodecContext *avctx)
  53. {
  54. Escape124Context *s = avctx->priv_data;
  55. avctx->pix_fmt = AV_PIX_FMT_RGB555;
  56. s->num_superblocks = ((unsigned)avctx->width / 8) *
  57. ((unsigned)avctx->height / 8);
  58. s->frame = av_frame_alloc();
  59. if (!s->frame)
  60. return AVERROR(ENOMEM);
  61. return 0;
  62. }
  63. static av_cold int escape124_decode_close(AVCodecContext *avctx)
  64. {
  65. unsigned i;
  66. Escape124Context *s = avctx->priv_data;
  67. for (i = 0; i < 3; i++)
  68. av_free(s->codebooks[i].blocks);
  69. av_frame_free(&s->frame);
  70. return 0;
  71. }
  72. static CodeBook unpack_codebook(BitstreamContext *bc, unsigned depth,
  73. unsigned size)
  74. {
  75. unsigned i, j;
  76. CodeBook cb = { 0 };
  77. if (!can_safely_read(bc, size * 34))
  78. return cb;
  79. if (size >= INT_MAX / sizeof(MacroBlock))
  80. return cb;
  81. cb.blocks = av_malloc(size ? size * sizeof(MacroBlock) : 1);
  82. if (!cb.blocks)
  83. return cb;
  84. cb.depth = depth;
  85. cb.size = size;
  86. for (i = 0; i < size; i++) {
  87. unsigned mask_bits = bitstream_read(bc, 4);
  88. unsigned color0 = bitstream_read(bc, 15);
  89. unsigned color1 = bitstream_read(bc, 15);
  90. for (j = 0; j < 4; j++) {
  91. if (mask_bits & (1 << j))
  92. cb.blocks[i].pixels[j] = color1;
  93. else
  94. cb.blocks[i].pixels[j] = color0;
  95. }
  96. }
  97. return cb;
  98. }
  99. static unsigned decode_skip_count(BitstreamContext *bc)
  100. {
  101. unsigned value;
  102. // This function reads a maximum of 23 bits,
  103. // which is within the padding space
  104. if (!can_safely_read(bc, 1))
  105. return -1;
  106. value = bitstream_read_bit(bc);
  107. if (!value)
  108. return value;
  109. value += bitstream_read(bc, 3);
  110. if (value != (1 + ((1 << 3) - 1)))
  111. return value;
  112. value += bitstream_read(bc, 7);
  113. if (value != (1 + ((1 << 3) - 1)) + ((1 << 7) - 1))
  114. return value;
  115. return value + bitstream_read(bc, 12);
  116. }
  117. static MacroBlock decode_macroblock(Escape124Context *s, BitstreamContext *bc,
  118. int *codebook_index, int superblock_index)
  119. {
  120. // This function reads a maximum of 22 bits; the callers
  121. // guard this function appropriately
  122. unsigned block_index, depth;
  123. int value = bitstream_read_bit(bc);
  124. if (value) {
  125. static const char transitions[3][2] = { {2, 1}, {0, 2}, {1, 0} };
  126. value = bitstream_read_bit(bc);
  127. *codebook_index = transitions[*codebook_index][value];
  128. }
  129. depth = s->codebooks[*codebook_index].depth;
  130. block_index = bitstream_read(bc, depth);
  131. if (*codebook_index == 1) {
  132. block_index += superblock_index << s->codebooks[1].depth;
  133. }
  134. // This condition can occur with invalid bitstreams and
  135. // *codebook_index == 2
  136. if (block_index >= s->codebooks[*codebook_index].size)
  137. return (MacroBlock) { { 0 } };
  138. return s->codebooks[*codebook_index].blocks[block_index];
  139. }
  140. static void insert_mb_into_sb(SuperBlock* sb, MacroBlock mb, unsigned index) {
  141. // Formula: ((index / 4) * 16 + (index % 4) * 2) / 2
  142. uint32_t *dst = sb->pixels32 + index + (index & -4);
  143. // This technically violates C99 aliasing rules, but it should be safe.
  144. dst[0] = mb.pixels32[0];
  145. dst[4] = mb.pixels32[1];
  146. }
  147. static void copy_superblock(uint16_t* dest, unsigned dest_stride,
  148. uint16_t* src, unsigned src_stride)
  149. {
  150. unsigned y;
  151. if (src)
  152. for (y = 0; y < 8; y++)
  153. memcpy(dest + y * dest_stride, src + y * src_stride,
  154. sizeof(uint16_t) * 8);
  155. else
  156. for (y = 0; y < 8; y++)
  157. memset(dest + y * dest_stride, 0, sizeof(uint16_t) * 8);
  158. }
  159. static const uint16_t mask_matrix[] = {0x1, 0x2, 0x10, 0x20,
  160. 0x4, 0x8, 0x40, 0x80,
  161. 0x100, 0x200, 0x1000, 0x2000,
  162. 0x400, 0x800, 0x4000, 0x8000};
  163. static int escape124_decode_frame(AVCodecContext *avctx,
  164. void *data, int *got_frame,
  165. AVPacket *avpkt)
  166. {
  167. const uint8_t *buf = avpkt->data;
  168. int buf_size = avpkt->size;
  169. Escape124Context *s = avctx->priv_data;
  170. AVFrame *frame = data;
  171. BitstreamContext bc;
  172. unsigned frame_flags, frame_size;
  173. unsigned i;
  174. unsigned superblock_index, cb_index = 1,
  175. superblock_col_index = 0,
  176. superblocks_per_row = avctx->width / 8, skip = -1;
  177. uint16_t* old_frame_data, *new_frame_data;
  178. unsigned old_stride, new_stride;
  179. int ret;
  180. bitstream_init8(&bc, buf, buf_size);
  181. // This call also guards the potential depth reads for the
  182. // codebook unpacking.
  183. if (!can_safely_read(&bc, 64))
  184. return -1;
  185. frame_flags = bitstream_read(&bc, 32);
  186. frame_size = bitstream_read(&bc, 32);
  187. // Leave last frame unchanged
  188. // FIXME: Is this necessary? I haven't seen it in any real samples
  189. if (!(frame_flags & 0x114) || !(frame_flags & 0x7800000)) {
  190. if (!s->frame->data[0])
  191. return AVERROR_INVALIDDATA;
  192. av_log(NULL, AV_LOG_DEBUG, "Skipping frame\n");
  193. *got_frame = 1;
  194. if ((ret = av_frame_ref(frame, s->frame)) < 0)
  195. return ret;
  196. return frame_size;
  197. }
  198. for (i = 0; i < 3; i++) {
  199. if (frame_flags & (1 << (17 + i))) {
  200. unsigned cb_depth, cb_size;
  201. if (i == 2) {
  202. // This codebook can be cut off at places other than
  203. // powers of 2, leaving some of the entries undefined.
  204. cb_size = bitstream_read(&bc, 20);
  205. cb_depth = av_log2(cb_size - 1) + 1;
  206. } else {
  207. cb_depth = bitstream_read(&bc, 4);
  208. if (i == 0) {
  209. // This is the most basic codebook: pow(2,depth) entries
  210. // for a depth-length key
  211. cb_size = 1 << cb_depth;
  212. } else {
  213. // This codebook varies per superblock
  214. // FIXME: I don't think this handles integer overflow
  215. // properly
  216. cb_size = s->num_superblocks << cb_depth;
  217. }
  218. }
  219. av_free(s->codebooks[i].blocks);
  220. s->codebooks[i] = unpack_codebook(&bc, cb_depth, cb_size);
  221. if (!s->codebooks[i].blocks)
  222. return -1;
  223. }
  224. }
  225. if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0) {
  226. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  227. return ret;
  228. }
  229. new_frame_data = (uint16_t*)frame->data[0];
  230. new_stride = frame->linesize[0] / 2;
  231. old_frame_data = (uint16_t*)s->frame->data[0];
  232. old_stride = s->frame->linesize[0] / 2;
  233. for (superblock_index = 0; superblock_index < s->num_superblocks;
  234. superblock_index++) {
  235. MacroBlock mb;
  236. SuperBlock sb;
  237. unsigned multi_mask = 0;
  238. if (skip == -1) {
  239. // Note that this call will make us skip the rest of the blocks
  240. // if the frame prematurely ends
  241. skip = decode_skip_count(&bc);
  242. }
  243. if (skip) {
  244. copy_superblock(new_frame_data, new_stride,
  245. old_frame_data, old_stride);
  246. } else {
  247. copy_superblock(sb.pixels, 8,
  248. old_frame_data, old_stride);
  249. while (can_safely_read(&bc, 1) && !bitstream_read_bit(&bc)) {
  250. unsigned mask;
  251. mb = decode_macroblock(s, &bc, &cb_index, superblock_index);
  252. mask = bitstream_read(&bc, 16);
  253. multi_mask |= mask;
  254. for (i = 0; i < 16; i++) {
  255. if (mask & mask_matrix[i]) {
  256. insert_mb_into_sb(&sb, mb, i);
  257. }
  258. }
  259. }
  260. if (can_safely_read(&bc, 1) && !bitstream_read_bit(&bc)) {
  261. unsigned inv_mask = bitstream_read(&bc, 4);
  262. for (i = 0; i < 4; i++) {
  263. if (inv_mask & (1 << i)) {
  264. multi_mask ^= 0xF << i*4;
  265. } else {
  266. multi_mask ^= bitstream_read(&bc, 4) << i * 4;
  267. }
  268. }
  269. for (i = 0; i < 16; i++) {
  270. if (multi_mask & mask_matrix[i]) {
  271. if (!can_safely_read(&bc, 1))
  272. break;
  273. mb = decode_macroblock(s, &bc, &cb_index,
  274. superblock_index);
  275. insert_mb_into_sb(&sb, mb, i);
  276. }
  277. }
  278. } else if (frame_flags & (1 << 16)) {
  279. while (can_safely_read(&bc, 1) && !bitstream_read_bit(&bc)) {
  280. mb = decode_macroblock(s, &bc, &cb_index, superblock_index);
  281. insert_mb_into_sb(&sb, mb, bitstream_read(&bc, 4));
  282. }
  283. }
  284. copy_superblock(new_frame_data, new_stride, sb.pixels, 8);
  285. }
  286. superblock_col_index++;
  287. new_frame_data += 8;
  288. if (old_frame_data)
  289. old_frame_data += 8;
  290. if (superblock_col_index == superblocks_per_row) {
  291. new_frame_data += new_stride * 8 - superblocks_per_row * 8;
  292. if (old_frame_data)
  293. old_frame_data += old_stride * 8 - superblocks_per_row * 8;
  294. superblock_col_index = 0;
  295. }
  296. skip--;
  297. }
  298. av_log(NULL, AV_LOG_DEBUG,
  299. "Escape sizes: %i, %i, %i\n",
  300. frame_size, buf_size, bitstream_tell(&bc) / 8);
  301. av_frame_unref(s->frame);
  302. if ((ret = av_frame_ref(s->frame, frame)) < 0)
  303. return ret;
  304. *got_frame = 1;
  305. return frame_size;
  306. }
  307. AVCodec ff_escape124_decoder = {
  308. .name = "escape124",
  309. .long_name = NULL_IF_CONFIG_SMALL("Escape 124"),
  310. .type = AVMEDIA_TYPE_VIDEO,
  311. .id = AV_CODEC_ID_ESCAPE124,
  312. .priv_data_size = sizeof(Escape124Context),
  313. .init = escape124_decode_init,
  314. .close = escape124_decode_close,
  315. .decode = escape124_decode_frame,
  316. .capabilities = AV_CODEC_CAP_DR1,
  317. };