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.

164 lines
5.2KB

  1. /*
  2. * Bethesda VID video decoder
  3. * Copyright (C) 2007 Nicholas Tung
  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. * @brief Bethesda Softworks VID Video Decoder
  24. * @author Nicholas Tung [ntung (at. ntung com] (2007-03)
  25. * @see http://wiki.multimedia.cx/index.php?title=Bethsoft_VID
  26. * @see http://www.svatopluk.com/andux/docs/dfvid.html
  27. */
  28. #include "libavutil/common.h"
  29. #include "avcodec.h"
  30. #include "bethsoftvideo.h"
  31. #include "bytestream.h"
  32. #include "internal.h"
  33. typedef struct BethsoftvidContext {
  34. AVFrame frame;
  35. GetByteContext g;
  36. } BethsoftvidContext;
  37. static av_cold int bethsoftvid_decode_init(AVCodecContext *avctx)
  38. {
  39. BethsoftvidContext *vid = avctx->priv_data;
  40. avctx->pix_fmt = AV_PIX_FMT_PAL8;
  41. avcodec_get_frame_defaults(&vid->frame);
  42. return 0;
  43. }
  44. static int set_palette(BethsoftvidContext *ctx)
  45. {
  46. uint32_t *palette = (uint32_t *)ctx->frame.data[1];
  47. int a;
  48. if (bytestream2_get_bytes_left(&ctx->g) < 256*3)
  49. return AVERROR_INVALIDDATA;
  50. for(a = 0; a < 256; a++){
  51. palette[a] = bytestream2_get_be24u(&ctx->g) * 4;
  52. }
  53. ctx->frame.palette_has_changed = 1;
  54. return 0;
  55. }
  56. static int bethsoftvid_decode_frame(AVCodecContext *avctx,
  57. void *data, int *got_frame,
  58. AVPacket *avpkt)
  59. {
  60. BethsoftvidContext * vid = avctx->priv_data;
  61. char block_type;
  62. uint8_t * dst;
  63. uint8_t * frame_end;
  64. int remaining = avctx->width; // number of bytes remaining on a line
  65. int wrap_to_next_line;
  66. int code, ret;
  67. int yoffset;
  68. if ((ret = ff_reget_buffer(avctx, &vid->frame)) < 0) {
  69. av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
  70. return ret;
  71. }
  72. wrap_to_next_line = vid->frame.linesize[0] - avctx->width;
  73. if (avpkt->side_data_elems > 0 &&
  74. avpkt->side_data[0].type == AV_PKT_DATA_PALETTE) {
  75. bytestream2_init(&vid->g, avpkt->side_data[0].data,
  76. avpkt->side_data[0].size);
  77. if ((ret = set_palette(vid)) < 0)
  78. return ret;
  79. }
  80. bytestream2_init(&vid->g, avpkt->data, avpkt->size);
  81. dst = vid->frame.data[0];
  82. frame_end = vid->frame.data[0] + vid->frame.linesize[0] * avctx->height;
  83. switch(block_type = bytestream2_get_byte(&vid->g)){
  84. case PALETTE_BLOCK: {
  85. *got_frame = 0;
  86. if ((ret = set_palette(vid)) < 0) {
  87. av_log(avctx, AV_LOG_ERROR, "error reading palette\n");
  88. return ret;
  89. }
  90. return bytestream2_tell(&vid->g);
  91. }
  92. case VIDEO_YOFF_P_FRAME:
  93. yoffset = bytestream2_get_le16(&vid->g);
  94. if(yoffset >= avctx->height)
  95. return AVERROR_INVALIDDATA;
  96. dst += vid->frame.linesize[0] * yoffset;
  97. }
  98. // main code
  99. while((code = bytestream2_get_byte(&vid->g))){
  100. int length = code & 0x7f;
  101. // copy any bytes starting at the current position, and ending at the frame width
  102. while(length > remaining){
  103. if(code < 0x80)
  104. bytestream2_get_buffer(&vid->g, dst, remaining);
  105. else if(block_type == VIDEO_I_FRAME)
  106. memset(dst, bytestream2_peek_byte(&vid->g), remaining);
  107. length -= remaining; // decrement the number of bytes to be copied
  108. dst += remaining + wrap_to_next_line; // skip over extra bytes at end of frame
  109. remaining = avctx->width;
  110. if(dst == frame_end)
  111. goto end;
  112. }
  113. // copy any remaining bytes after / if line overflows
  114. if(code < 0x80)
  115. bytestream2_get_buffer(&vid->g, dst, length);
  116. else if(block_type == VIDEO_I_FRAME)
  117. memset(dst, bytestream2_get_byte(&vid->g), length);
  118. remaining -= length;
  119. dst += length;
  120. }
  121. end:
  122. if ((ret = av_frame_ref(data, &vid->frame)) < 0)
  123. return ret;
  124. *got_frame = 1;
  125. return avpkt->size;
  126. }
  127. static av_cold int bethsoftvid_decode_end(AVCodecContext *avctx)
  128. {
  129. BethsoftvidContext * vid = avctx->priv_data;
  130. av_frame_unref(&vid->frame);
  131. return 0;
  132. }
  133. AVCodec ff_bethsoftvid_decoder = {
  134. .name = "bethsoftvid",
  135. .long_name = NULL_IF_CONFIG_SMALL("Bethesda VID video"),
  136. .type = AVMEDIA_TYPE_VIDEO,
  137. .id = AV_CODEC_ID_BETHSOFTVID,
  138. .priv_data_size = sizeof(BethsoftvidContext),
  139. .init = bethsoftvid_decode_init,
  140. .close = bethsoftvid_decode_end,
  141. .decode = bethsoftvid_decode_frame,
  142. .capabilities = CODEC_CAP_DR1,
  143. };