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.

247 lines
6.4KB

  1. /*
  2. * VBLE Decoder
  3. * Copyright (c) 2011 Derek Buitenhuis
  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. * VBLE Decoder
  24. */
  25. #define ALT_BITSTREAM_READER_LE
  26. #include "avcodec.h"
  27. #include "get_bits.h"
  28. typedef struct {
  29. AVCodecContext *avctx;
  30. int size;
  31. int flags;
  32. uint8_t *len;
  33. uint8_t *val;
  34. } VBLEContext;
  35. static uint8_t vble_read_reverse_unary(GetBitContext *gb)
  36. {
  37. /* At most we need to read 9 bits total to get indices up to 8 */
  38. uint8_t val = show_bits(gb, 8);
  39. if (val) {
  40. val = 7 - av_log2_16bit(av_reverse[val]);
  41. skip_bits(gb, val + 1);
  42. return val;
  43. } else {
  44. skip_bits(gb, 8);
  45. if (get_bits1(gb))
  46. return 8;
  47. }
  48. /* Return something larger than 8 on error */
  49. return UINT8_MAX;
  50. }
  51. static int vble_unpack(VBLEContext *ctx, GetBitContext *gb)
  52. {
  53. int i;
  54. /* Read all the lengths in first */
  55. for (i = 0; i < ctx->size; i++) {
  56. ctx->len[i] = vble_read_reverse_unary(gb);
  57. if (ctx->len[i] == UINT8_MAX)
  58. return -1;
  59. }
  60. /* For any values that have length 0 */
  61. memset(ctx->val, 0, ctx->size);
  62. for (i = 0; i < ctx->size; i++) {
  63. /* Check we have enough bits left */
  64. if (get_bits_left(gb) < ctx->len[i])
  65. return -1;
  66. /* get_bits can't take a length of 0 */
  67. if (ctx->len[i])
  68. ctx->val[i] = (1 << ctx->len[i]) + get_bits(gb, ctx->len[i]) - 1;
  69. }
  70. return 0;
  71. }
  72. static void vble_restore_plane(VBLEContext *ctx, int plane, int offset,
  73. int width, int height)
  74. {
  75. AVFrame *pic = ctx->avctx->coded_frame;
  76. uint8_t *dst = pic->data[plane];
  77. uint8_t *val = ctx->val + offset;
  78. uint8_t a, b, c;
  79. int stride = pic->linesize[plane];
  80. int i, j;
  81. for (i = 0; i < height; i++) {
  82. for (j = 0; j < width; j++) {
  83. dst[j] = (val[j] >> 1) ^ -(val[j] & 1);
  84. /* Top line and left column are not predicted */
  85. if (!j)
  86. continue;
  87. if (!i) {
  88. dst[j] += dst[j - 1];
  89. continue;
  90. }
  91. a = dst[j - 1];
  92. b = dst[j - stride];
  93. c = a + b - dst[j - 1 - stride];
  94. dst[j] += mid_pred(a, b, c);
  95. }
  96. dst += stride;
  97. val += width;
  98. }
  99. }
  100. static int vble_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
  101. AVPacket *avpkt)
  102. {
  103. VBLEContext *ctx = avctx->priv_data;
  104. AVFrame *pic = avctx->coded_frame;
  105. GetBitContext gb;
  106. const uint8_t *src = avpkt->data;
  107. int version;
  108. int offset = 0;
  109. int width_uv = avctx->width / 2, height_uv = avctx->height / 2;
  110. pic->reference = 0;
  111. /* Clear buffer if need be */
  112. if (pic->data[0])
  113. avctx->release_buffer(avctx, pic);
  114. /* Allocate buffer */
  115. if (avctx->get_buffer(avctx, pic) < 0) {
  116. av_log(avctx, AV_LOG_ERROR, "Could not allocate buffer.\n");
  117. return AVERROR(ENOMEM);
  118. }
  119. /* Set flags */
  120. pic->key_frame = 1;
  121. pic->pict_type = FF_I_TYPE;
  122. /* Version should always be 1 */
  123. version = AV_RL32(src);
  124. if (version != 1) {
  125. av_log(avctx, AV_LOG_ERROR, "Unsupported VBLE Version: %d\n", version);
  126. return AVERROR_INVALIDDATA;
  127. }
  128. init_get_bits(&gb, src + 4, (avpkt->size - 4) * 8);
  129. /* Unpack */
  130. if (vble_unpack(ctx, &gb) < 0) {
  131. av_log(avctx, AV_LOG_ERROR, "Invalid Code\n");
  132. return AVERROR_INVALIDDATA;
  133. }
  134. /* Restore planes. Should be almost identical to Huffyuv's. */
  135. vble_restore_plane(ctx, 0, offset, avctx->width, avctx->height);
  136. /* Chroma */
  137. if (!(ctx->flags & CODEC_FLAG_GRAY)) {
  138. offset += avctx->width * avctx->height;
  139. vble_restore_plane(ctx, 1, offset, width_uv, height_uv);
  140. offset += width_uv * height_uv;
  141. vble_restore_plane(ctx, 2, offset, width_uv, height_uv);
  142. }
  143. *data_size = sizeof(AVFrame);
  144. *(AVFrame *)data = *pic;
  145. return avpkt->size;
  146. }
  147. static av_cold int vble_decode_close(AVCodecContext *avctx)
  148. {
  149. VBLEContext *ctx = avctx->priv_data;
  150. AVFrame *pic = avctx->coded_frame;
  151. if (pic->data[0])
  152. avctx->release_buffer(avctx, pic);
  153. av_freep(&avctx->coded_frame);
  154. av_freep(&ctx->len);
  155. av_freep(&ctx->val);
  156. return 0;
  157. }
  158. static av_cold int vble_decode_init(AVCodecContext *avctx)
  159. {
  160. VBLEContext *ctx = avctx->priv_data;
  161. /* Stash for later use */
  162. ctx->avctx = avctx;
  163. ctx->flags = avctx->flags;
  164. avctx->pix_fmt = PIX_FMT_YUV420P;
  165. avctx->bits_per_raw_sample = 8;
  166. avctx->coded_frame = avcodec_alloc_frame();
  167. if (!avctx->coded_frame) {
  168. av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");
  169. return AVERROR(ENOMEM);
  170. }
  171. ctx->size = avpicture_get_size(avctx->pix_fmt,
  172. avctx->width, avctx->height);
  173. ctx->len = av_malloc(ctx->size * sizeof(*ctx->len));
  174. if (!ctx->len) {
  175. av_log(avctx, AV_LOG_ERROR, "Could not allocate lengths buffer.\n");
  176. vble_decode_close(avctx);
  177. return AVERROR(ENOMEM);
  178. }
  179. ctx->val = av_malloc(ctx->size * sizeof(*ctx->val));
  180. if (!ctx->val) {
  181. av_log(avctx, AV_LOG_ERROR, "Could not allocate values buffer.\n");
  182. vble_decode_close(avctx);
  183. return AVERROR(ENOMEM);
  184. }
  185. return 0;
  186. }
  187. AVCodec ff_vble_decoder = {
  188. .name = "vble",
  189. .type = AVMEDIA_TYPE_VIDEO,
  190. .id = CODEC_ID_VBLE,
  191. .priv_data_size = sizeof(VBLEContext),
  192. .init = vble_decode_init,
  193. .close = vble_decode_close,
  194. .decode = vble_decode_frame,
  195. .capabilities = CODEC_CAP_DR1,
  196. .long_name = NULL_IF_CONFIG_SMALL("VBLE Lossless Codec"),
  197. };