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.

302 lines
10KB

  1. /*
  2. * Id Quake II CIN File Demuxer
  3. * Copyright (c) 2003 The ffmpeg Project
  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 idcin.c
  23. * Id Quake II CIN file demuxer by Mike Melanson (melanson@pcisys.net)
  24. * For more information about the Id CIN format, visit:
  25. * http://www.csse.monash.edu.au/~timf/
  26. *
  27. * CIN is a somewhat quirky and ill-defined format. Here are some notes
  28. * for anyone trying to understand the technical details of this format:
  29. *
  30. * The format has no definite file signature. This is problematic for a
  31. * general-purpose media player that wants to automatically detect file
  32. * types. However, a CIN file does start with 5 32-bit numbers that
  33. * specify audio and video parameters. This demuxer gets around the lack
  34. * of file signature by performing sanity checks on those parameters.
  35. * Probabalistically, this is a reasonable solution since the number of
  36. * valid combinations of the 5 parameters is a very small subset of the
  37. * total 160-bit number space.
  38. *
  39. * Refer to the function idcin_probe() for the precise A/V parameters
  40. * that this demuxer allows.
  41. *
  42. * Next, each audio and video frame has a duration of 1/14 sec. If the
  43. * audio sample rate is a multiple of the common frequency 22050 Hz it will
  44. * divide evenly by 14. However, if the sample rate is 11025 Hz:
  45. * 11025 (samples/sec) / 14 (frames/sec) = 787.5 (samples/frame)
  46. * The way the CIN stores audio in this case is by storing 787 sample
  47. * frames in the first audio frame and 788 sample frames in the second
  48. * audio frame. Therefore, the total number of bytes in an audio frame
  49. * is given as:
  50. * audio frame #0: 787 * (bytes/sample) * (# channels) bytes in frame
  51. * audio frame #1: 788 * (bytes/sample) * (# channels) bytes in frame
  52. * audio frame #2: 787 * (bytes/sample) * (# channels) bytes in frame
  53. * audio frame #3: 788 * (bytes/sample) * (# channels) bytes in frame
  54. *
  55. * Finally, not all Id CIN creation tools agree on the resolution of the
  56. * color palette, apparently. Some creation tools specify red, green, and
  57. * blue palette components in terms of 6-bit VGA color DAC values which
  58. * range from 0..63. Other tools specify the RGB components as full 8-bit
  59. * values that range from 0..255. Since there are no markers in the file to
  60. * differentiate between the two variants, this demuxer uses the following
  61. * heuristic:
  62. * - load the 768 palette bytes from disk
  63. * - assume that they will need to be shifted left by 2 bits to
  64. * transform them from 6-bit values to 8-bit values
  65. * - scan through all 768 palette bytes
  66. * - if any bytes exceed 63, do not shift the bytes at all before
  67. * transmitting them to the video decoder
  68. */
  69. #include "avformat.h"
  70. #define HUFFMAN_TABLE_SIZE (64 * 1024)
  71. #define FRAME_PTS_INC (90000 / 14)
  72. typedef struct IdcinDemuxContext {
  73. int video_stream_index;
  74. int audio_stream_index;
  75. int audio_chunk_size1;
  76. int audio_chunk_size2;
  77. /* demux state variables */
  78. int current_audio_chunk;
  79. int next_chunk_is_video;
  80. int audio_present;
  81. int64_t pts;
  82. AVPaletteControl palctrl;
  83. } IdcinDemuxContext;
  84. static int idcin_probe(AVProbeData *p)
  85. {
  86. unsigned int number;
  87. /*
  88. * This is what you could call a "probabilistic" file check: Id CIN
  89. * files don't have a definite file signature. In lieu of such a marker,
  90. * perform sanity checks on the 5 32-bit header fields:
  91. * width, height: greater than 0, less than or equal to 1024
  92. * audio sample rate: greater than or equal to 8000, less than or
  93. * equal to 48000, or 0 for no audio
  94. * audio sample width (bytes/sample): 0 for no audio, or 1 or 2
  95. * audio channels: 0 for no audio, or 1 or 2
  96. */
  97. /* cannot proceed without 20 bytes */
  98. if (p->buf_size < 20)
  99. return 0;
  100. /* check the video width */
  101. number = AV_RL32(&p->buf[0]);
  102. if ((number == 0) || (number > 1024))
  103. return 0;
  104. /* check the video height */
  105. number = AV_RL32(&p->buf[4]);
  106. if ((number == 0) || (number > 1024))
  107. return 0;
  108. /* check the audio sample rate */
  109. number = AV_RL32(&p->buf[8]);
  110. if ((number != 0) && ((number < 8000) | (number > 48000)))
  111. return 0;
  112. /* check the audio bytes/sample */
  113. number = AV_RL32(&p->buf[12]);
  114. if (number > 2)
  115. return 0;
  116. /* check the audio channels */
  117. number = AV_RL32(&p->buf[16]);
  118. if (number > 2)
  119. return 0;
  120. /* return half certainly since this check is a bit sketchy */
  121. return AVPROBE_SCORE_MAX / 2;
  122. }
  123. static int idcin_read_header(AVFormatContext *s,
  124. AVFormatParameters *ap)
  125. {
  126. ByteIOContext *pb = &s->pb;
  127. IdcinDemuxContext *idcin = (IdcinDemuxContext *)s->priv_data;
  128. AVStream *st;
  129. unsigned int width, height;
  130. unsigned int sample_rate, bytes_per_sample, channels;
  131. /* get the 5 header parameters */
  132. width = get_le32(pb);
  133. height = get_le32(pb);
  134. sample_rate = get_le32(pb);
  135. bytes_per_sample = get_le32(pb);
  136. channels = get_le32(pb);
  137. st = av_new_stream(s, 0);
  138. if (!st)
  139. return AVERROR_NOMEM;
  140. av_set_pts_info(st, 33, 1, 90000);
  141. idcin->video_stream_index = st->index;
  142. st->codec->codec_type = CODEC_TYPE_VIDEO;
  143. st->codec->codec_id = CODEC_ID_IDCIN;
  144. st->codec->codec_tag = 0; /* no fourcc */
  145. st->codec->width = width;
  146. st->codec->height = height;
  147. /* load up the Huffman tables into extradata */
  148. st->codec->extradata_size = HUFFMAN_TABLE_SIZE;
  149. st->codec->extradata = av_malloc(HUFFMAN_TABLE_SIZE);
  150. if (get_buffer(pb, st->codec->extradata, HUFFMAN_TABLE_SIZE) !=
  151. HUFFMAN_TABLE_SIZE)
  152. return AVERROR_IO;
  153. /* save a reference in order to transport the palette */
  154. st->codec->palctrl = &idcin->palctrl;
  155. /* if sample rate is 0, assume no audio */
  156. if (sample_rate) {
  157. idcin->audio_present = 1;
  158. st = av_new_stream(s, 0);
  159. if (!st)
  160. return AVERROR_NOMEM;
  161. av_set_pts_info(st, 33, 1, 90000);
  162. idcin->audio_stream_index = st->index;
  163. st->codec->codec_type = CODEC_TYPE_AUDIO;
  164. st->codec->codec_tag = 1;
  165. st->codec->channels = channels;
  166. st->codec->sample_rate = sample_rate;
  167. st->codec->bits_per_sample = bytes_per_sample * 8;
  168. st->codec->bit_rate = sample_rate * bytes_per_sample * 8 * channels;
  169. st->codec->block_align = bytes_per_sample * channels;
  170. if (bytes_per_sample == 1)
  171. st->codec->codec_id = CODEC_ID_PCM_U8;
  172. else
  173. st->codec->codec_id = CODEC_ID_PCM_S16LE;
  174. if (sample_rate % 14 != 0) {
  175. idcin->audio_chunk_size1 = (sample_rate / 14) *
  176. bytes_per_sample * channels;
  177. idcin->audio_chunk_size2 = (sample_rate / 14 + 1) *
  178. bytes_per_sample * channels;
  179. } else {
  180. idcin->audio_chunk_size1 = idcin->audio_chunk_size2 =
  181. (sample_rate / 14) * bytes_per_sample * channels;
  182. }
  183. idcin->current_audio_chunk = 0;
  184. } else
  185. idcin->audio_present = 1;
  186. idcin->next_chunk_is_video = 1;
  187. idcin->pts = 0;
  188. return 0;
  189. }
  190. static int idcin_read_packet(AVFormatContext *s,
  191. AVPacket *pkt)
  192. {
  193. int ret;
  194. unsigned int command;
  195. unsigned int chunk_size;
  196. IdcinDemuxContext *idcin = (IdcinDemuxContext *)s->priv_data;
  197. ByteIOContext *pb = &s->pb;
  198. int i;
  199. int palette_scale;
  200. unsigned char r, g, b;
  201. unsigned char palette_buffer[768];
  202. if (url_feof(&s->pb))
  203. return AVERROR_IO;
  204. if (idcin->next_chunk_is_video) {
  205. command = get_le32(pb);
  206. if (command == 2) {
  207. return AVERROR_IO;
  208. } else if (command == 1) {
  209. /* trigger a palette change */
  210. idcin->palctrl.palette_changed = 1;
  211. if (get_buffer(pb, palette_buffer, 768) != 768)
  212. return AVERROR_IO;
  213. /* scale the palette as necessary */
  214. palette_scale = 2;
  215. for (i = 0; i < 768; i++)
  216. if (palette_buffer[i] > 63) {
  217. palette_scale = 0;
  218. break;
  219. }
  220. for (i = 0; i < 256; i++) {
  221. r = palette_buffer[i * 3 ] << palette_scale;
  222. g = palette_buffer[i * 3 + 1] << palette_scale;
  223. b = palette_buffer[i * 3 + 2] << palette_scale;
  224. idcin->palctrl.palette[i] = (r << 16) | (g << 8) | (b);
  225. }
  226. }
  227. chunk_size = get_le32(pb);
  228. /* skip the number of decoded bytes (always equal to width * height) */
  229. url_fseek(pb, 4, SEEK_CUR);
  230. chunk_size -= 4;
  231. ret= av_get_packet(pb, pkt, chunk_size);
  232. if (ret != chunk_size)
  233. return AVERROR_IO;
  234. pkt->stream_index = idcin->video_stream_index;
  235. pkt->pts = idcin->pts;
  236. } else {
  237. /* send out the audio chunk */
  238. if (idcin->current_audio_chunk)
  239. chunk_size = idcin->audio_chunk_size2;
  240. else
  241. chunk_size = idcin->audio_chunk_size1;
  242. ret= av_get_packet(pb, pkt, chunk_size);
  243. if (ret != chunk_size)
  244. return AVERROR_IO;
  245. pkt->stream_index = idcin->audio_stream_index;
  246. pkt->pts = idcin->pts;
  247. idcin->current_audio_chunk ^= 1;
  248. idcin->pts += FRAME_PTS_INC;
  249. }
  250. if (idcin->audio_present)
  251. idcin->next_chunk_is_video ^= 1;
  252. return ret;
  253. }
  254. static int idcin_read_close(AVFormatContext *s)
  255. {
  256. return 0;
  257. }
  258. AVInputFormat idcin_demuxer = {
  259. "idcin",
  260. "Id CIN format",
  261. sizeof(IdcinDemuxContext),
  262. idcin_probe,
  263. idcin_read_header,
  264. idcin_read_packet,
  265. idcin_read_close,
  266. };