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.

235 lines
8.5KB

  1. /*
  2. * Bethsoft VID format Demuxer
  3. * Copyright (c) 2007 Nicholas Tung
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file bethsoftvid.c
  23. * @brief Bethesda Softworks VID (.vid) file demuxer
  24. * @author Nicholas Tung [ntung (at. ntung com] (2007-03)
  25. * @sa http://wiki.multimedia.cx/index.php?title=Bethsoft_VID
  26. * @sa http://www.svatopluk.com/andux/docs/dfvid.html
  27. */
  28. #include "avformat.h"
  29. #include "bethsoftvideo.h"
  30. typedef struct BVID_DemuxContext
  31. {
  32. int nframes;
  33. /** delay value between frames, added to individual frame delay.
  34. * custom units, which will be added to other custom units (~=16ms according
  35. * to free, unofficial documentation) */
  36. int bethsoft_global_delay;
  37. /** video presentation time stamp.
  38. * delay = 16 milliseconds * (global_delay + per_frame_delay) */
  39. int64_t video_pts;
  40. int is_finished;
  41. } BVID_DemuxContext;
  42. static int vid_probe(AVProbeData *p)
  43. {
  44. // little endian VID tag, file starts with "VID\0"
  45. if (p->buf_size < 4 || AV_RL32(p->buf) != MKTAG('V', 'I', 'D', 0))
  46. return 0;
  47. return AVPROBE_SCORE_MAX;
  48. }
  49. static int vid_read_header(AVFormatContext *s,
  50. AVFormatParameters *ap)
  51. {
  52. BVID_DemuxContext *vid = s->priv_data; // permanent data outside of function
  53. ByteIOContext *pb = &s->pb; // io to file
  54. AVStream *stream;
  55. /* load main header. Contents:
  56. * bytes: 'V' 'I' 'D'
  57. * int16s: always_512, nframes, width, height, delay, always_14
  58. */
  59. url_fseek(pb, 5, SEEK_CUR);
  60. vid->nframes = get_le16(pb);
  61. // FFmpeg central code will use this; don't need to return or anything
  62. // initialize the bethsoft codec
  63. stream = av_new_stream(s, 0);
  64. if (!stream) { return AVERROR_NOMEM; }
  65. av_set_pts_info(stream, 32, 1, 60); // 16 ms increments, i.e. 60 fps
  66. stream->codec->codec_type = CODEC_TYPE_VIDEO;
  67. stream->codec->codec_id = CODEC_ID_BETHSOFTVID;
  68. stream->codec->width = get_le16(pb);
  69. stream->codec->height = get_le16(pb);
  70. stream->codec->pix_fmt = PIX_FMT_PAL8;
  71. vid->bethsoft_global_delay = get_le16(pb);
  72. get_le16(pb);
  73. // done with video codec, set up audio codec
  74. stream = av_new_stream(s, 0);
  75. if (!stream) { return AVERROR_NOMEM; }
  76. stream->codec->codec_type = CODEC_TYPE_AUDIO;
  77. stream->codec->codec_id = CODEC_ID_PCM_U8;
  78. stream->codec->channels = 1;
  79. stream->codec->sample_rate = 11025;
  80. stream->codec->bits_per_sample = 8;
  81. stream->codec->bit_rate = stream->codec->channels * stream->codec->sample_rate * stream->codec->bits_per_sample;
  82. return 0;
  83. }
  84. #define BUFFER_PADDING_SIZE 1000
  85. static int read_frame(BVID_DemuxContext *vid, ByteIOContext *pb, AVPacket *pkt,
  86. uint8_t block_type, AVFormatContext *s, int npixels)
  87. {
  88. uint8_t * vidbuf_start = NULL;
  89. int vidbuf_nbytes = 0;
  90. int rle_num_bytes;
  91. int bytes_copied = 0;
  92. int position;
  93. size_t vidbuf_capacity;
  94. vidbuf_start = av_malloc(vidbuf_capacity = BUFFER_PADDING_SIZE);
  95. if(!vidbuf_start) { return AVERROR_NOMEM; }
  96. // save the file position for the packet, include block type
  97. position = url_ftell(pb) - 1;
  98. // set the block type for the decoder
  99. vidbuf_start[vidbuf_nbytes++] = block_type;
  100. // get the video delay (next int16), and set the presentation time
  101. vid->video_pts += vid->bethsoft_global_delay + get_le16(pb);
  102. // set the y offset if it exists (decoder header data should be in data section)
  103. if(block_type == VIDEO_YOFFSET_DIFFERENCE_FRAME_BLOCK)
  104. {
  105. if(get_buffer(pb, &vidbuf_start[vidbuf_nbytes], 2) != 2) { return AVERROR_IO; }
  106. vidbuf_nbytes += 2;
  107. }
  108. do
  109. {
  110. vidbuf_start = av_fast_realloc(vidbuf_start, &vidbuf_capacity, vidbuf_nbytes + BUFFER_PADDING_SIZE);
  111. if(!vidbuf_start) { return AVERROR_NOMEM; }
  112. rle_num_bytes = get_byte(pb);
  113. vidbuf_start[vidbuf_nbytes++] = rle_num_bytes;
  114. if(rle_num_bytes > 0x80) // rle sequence
  115. {
  116. if(block_type == VIDEO_FULL_FRAME_BLOCK) { vidbuf_start[vidbuf_nbytes++] = get_byte(pb); }
  117. bytes_copied += rle_num_bytes - 0x80;
  118. }
  119. else if(rle_num_bytes) // plain sequence
  120. {
  121. if(get_buffer(pb, &vidbuf_start[vidbuf_nbytes], rle_num_bytes) != rle_num_bytes)
  122. return AVERROR_IO;
  123. vidbuf_nbytes += rle_num_bytes;
  124. bytes_copied += rle_num_bytes;
  125. }
  126. if(bytes_copied == npixels) // sometimes no stop character is given, need to keep track of bytes copied
  127. {
  128. // may contain a 0 byte even if read all pixels
  129. if(get_byte(pb)) { url_fseek(pb, -1, SEEK_CUR); }
  130. break;
  131. }
  132. if(bytes_copied > npixels) { return -1; } // error
  133. } while(rle_num_bytes);
  134. // copy data into packet
  135. if(av_new_packet(pkt, vidbuf_nbytes)) { return AVERROR_NOMEM; }
  136. memcpy(pkt->data, vidbuf_start, vidbuf_nbytes);
  137. av_free(vidbuf_start);
  138. pkt->pos = position;
  139. pkt->stream_index = 0; // use the video decoder, which was initialized as the first stream
  140. pkt->pts = vid->video_pts;
  141. vid->nframes--; // used to check if all the frames were read
  142. return vidbuf_nbytes;
  143. }
  144. static int vid_read_packet(AVFormatContext *s,
  145. AVPacket *pkt)
  146. {
  147. BVID_DemuxContext *vid = s->priv_data; // permanent data outside of function
  148. ByteIOContext *pb = &s->pb; // io to file
  149. unsigned char block_type; // block type
  150. int audio_length;
  151. int ret_value;
  152. av_log(s, AV_LOG_DEBUG, "[bethsoftvid demuxer read_packet]");
  153. if(vid->is_finished || url_feof(pb)) { return AVERROR_IO; }
  154. block_type = get_byte(pb);
  155. switch(block_type)
  156. {
  157. case PALETTE_BLOCK:
  158. av_log(s, AV_LOG_DEBUG, "palette block.\n");
  159. url_fseek(pb, -1, SEEK_CUR); // include block type
  160. ret_value = av_get_packet(pb, pkt, 3 * VID_PALETTE_NUMCOLORS + 1);
  161. if(ret_value != 3 * VID_PALETTE_NUMCOLORS + 1) { av_free_packet(pkt); return AVERROR_IO; }
  162. pkt->stream_index = 0;
  163. return ret_value;
  164. case FIRST_AUDIO_BLOCK:
  165. av_log(s, AV_LOG_DEBUG, "first ");
  166. get_le16(pb); // some unused constant
  167. // soundblaster DAC used for sample rate, as on specification page (link above)
  168. s->streams[1]->codec->sample_rate = 1000000 / (256 - get_byte(pb));
  169. s->streams[1]->codec->bit_rate = s->streams[1]->codec->channels * s->streams[1]->codec->sample_rate * s->streams[1]->codec->bits_per_sample;
  170. case AUDIO_BLOCK:
  171. av_log(s, AV_LOG_DEBUG, "audio block.\n");
  172. audio_length = get_le16(pb);
  173. ret_value = av_get_packet(pb, pkt, audio_length);
  174. pkt->stream_index = 1;
  175. return (ret_value != audio_length ? AVERROR_IO : ret_value);
  176. case VIDEO_DIFFERENCE_FRAME_BLOCK: av_log(s, AV_LOG_DEBUG, "non-");
  177. case VIDEO_YOFFSET_DIFFERENCE_FRAME_BLOCK: av_log(s, AV_LOG_DEBUG, "offset ");
  178. case VIDEO_FULL_FRAME_BLOCK: av_log(s, AV_LOG_DEBUG, "video block.\n");
  179. return read_frame(vid, pb, pkt, block_type, s,
  180. s->streams[0]->codec->width * s->streams[0]->codec->height);
  181. case FINISHED_BLOCK:
  182. if(vid->nframes != 0)
  183. av_log(s, AV_LOG_VERBOSE, "reached terminating character but not all frames read.\n");
  184. vid->is_finished = 1;
  185. av_log(s, AV_LOG_DEBUG, "terminating block.\n");
  186. return AVERROR_IO;
  187. default:
  188. av_log(s, AV_LOG_ERROR, "unknown block (character = %c, decimal = %d, hex = %x)!!!\n",
  189. block_type, block_type, block_type); return -1;
  190. }
  191. return 0;
  192. }
  193. AVInputFormat bethsoftvid_demuxer = {
  194. "bethsoftvid",
  195. "Bethesda Softworks 'Daggerfall' VID format",
  196. sizeof(BVID_DemuxContext),
  197. vid_probe,
  198. vid_read_header,
  199. vid_read_packet,
  200. };