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.

326 lines
11KB

  1. /*
  2. * id Quake II CIN File Demuxer
  3. * Copyright (c) 2003 The ffmpeg Project
  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. * 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 "libavutil/audioconvert.h"
  70. #include "libavutil/imgutils.h"
  71. #include "libavutil/intreadwrite.h"
  72. #include "avformat.h"
  73. #include "internal.h"
  74. #define HUFFMAN_TABLE_SIZE (64 * 1024)
  75. #define IDCIN_FPS 14
  76. typedef struct IdcinDemuxContext {
  77. int video_stream_index;
  78. int audio_stream_index;
  79. int audio_chunk_size1;
  80. int audio_chunk_size2;
  81. /* demux state variables */
  82. int current_audio_chunk;
  83. int next_chunk_is_video;
  84. int audio_present;
  85. int64_t pts;
  86. } IdcinDemuxContext;
  87. static int idcin_probe(AVProbeData *p)
  88. {
  89. unsigned int number;
  90. /*
  91. * This is what you could call a "probabilistic" file check: id CIN
  92. * files don't have a definite file signature. In lieu of such a marker,
  93. * perform sanity checks on the 5 32-bit header fields:
  94. * width, height: greater than 0, less than or equal to 1024
  95. * audio sample rate: greater than or equal to 8000, less than or
  96. * equal to 48000, or 0 for no audio
  97. * audio sample width (bytes/sample): 0 for no audio, or 1 or 2
  98. * audio channels: 0 for no audio, or 1 or 2
  99. */
  100. /* check we have enough data to do all checks, otherwise the
  101. 0-padding may cause a wrong recognition */
  102. if (p->buf_size < 20)
  103. return 0;
  104. /* check the video width */
  105. number = AV_RL32(&p->buf[0]);
  106. if ((number == 0) || (number > 1024))
  107. return 0;
  108. /* check the video height */
  109. number = AV_RL32(&p->buf[4]);
  110. if ((number == 0) || (number > 1024))
  111. return 0;
  112. /* check the audio sample rate */
  113. number = AV_RL32(&p->buf[8]);
  114. if ((number != 0) && ((number < 8000) | (number > 48000)))
  115. return 0;
  116. /* check the audio bytes/sample */
  117. number = AV_RL32(&p->buf[12]);
  118. if (number > 2)
  119. return 0;
  120. /* check the audio channels */
  121. number = AV_RL32(&p->buf[16]);
  122. if (number > 2)
  123. return 0;
  124. /* return half certainly since this check is a bit sketchy */
  125. return AVPROBE_SCORE_MAX / 2;
  126. }
  127. static int idcin_read_header(AVFormatContext *s)
  128. {
  129. AVIOContext *pb = s->pb;
  130. IdcinDemuxContext *idcin = s->priv_data;
  131. AVStream *st;
  132. unsigned int width, height;
  133. unsigned int sample_rate, bytes_per_sample, channels;
  134. /* get the 5 header parameters */
  135. width = avio_rl32(pb);
  136. height = avio_rl32(pb);
  137. sample_rate = avio_rl32(pb);
  138. bytes_per_sample = avio_rl32(pb);
  139. channels = avio_rl32(pb);
  140. if (av_image_check_size(width, height, 0, s) < 0)
  141. return AVERROR_INVALIDDATA;
  142. if (sample_rate > 0) {
  143. if (sample_rate < 14 || sample_rate > INT_MAX) {
  144. av_log(s, AV_LOG_ERROR, "invalid sample rate: %u\n", sample_rate);
  145. return AVERROR_INVALIDDATA;
  146. }
  147. if (bytes_per_sample < 1 || bytes_per_sample > 2) {
  148. av_log(s, AV_LOG_ERROR, "invalid bytes per sample: %u\n",
  149. bytes_per_sample);
  150. return AVERROR_INVALIDDATA;
  151. }
  152. if (channels < 1 || channels > 2) {
  153. av_log(s, AV_LOG_ERROR, "invalid channels: %u\n", channels);
  154. return AVERROR_INVALIDDATA;
  155. }
  156. idcin->audio_present = 1;
  157. } else {
  158. /* if sample rate is 0, assume no audio */
  159. idcin->audio_present = 0;
  160. }
  161. st = avformat_new_stream(s, NULL);
  162. if (!st)
  163. return AVERROR(ENOMEM);
  164. avpriv_set_pts_info(st, 33, 1, IDCIN_FPS);
  165. idcin->video_stream_index = st->index;
  166. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  167. st->codec->codec_id = AV_CODEC_ID_IDCIN;
  168. st->codec->codec_tag = 0; /* no fourcc */
  169. st->codec->width = width;
  170. st->codec->height = height;
  171. /* load up the Huffman tables into extradata */
  172. st->codec->extradata_size = HUFFMAN_TABLE_SIZE;
  173. st->codec->extradata = av_malloc(HUFFMAN_TABLE_SIZE);
  174. if (avio_read(pb, st->codec->extradata, HUFFMAN_TABLE_SIZE) !=
  175. HUFFMAN_TABLE_SIZE)
  176. return AVERROR(EIO);
  177. if (idcin->audio_present) {
  178. idcin->audio_present = 1;
  179. st = avformat_new_stream(s, NULL);
  180. if (!st)
  181. return AVERROR(ENOMEM);
  182. avpriv_set_pts_info(st, 33, 1, IDCIN_FPS);
  183. idcin->audio_stream_index = st->index;
  184. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  185. st->codec->codec_tag = 1;
  186. st->codec->channels = channels;
  187. st->codec->channel_layout = channels > 1 ? AV_CH_LAYOUT_STEREO :
  188. AV_CH_LAYOUT_MONO;
  189. st->codec->sample_rate = sample_rate;
  190. st->codec->bits_per_coded_sample = bytes_per_sample * 8;
  191. st->codec->bit_rate = sample_rate * bytes_per_sample * 8 * channels;
  192. st->codec->block_align = bytes_per_sample * channels;
  193. if (bytes_per_sample == 1)
  194. st->codec->codec_id = AV_CODEC_ID_PCM_U8;
  195. else
  196. st->codec->codec_id = AV_CODEC_ID_PCM_S16LE;
  197. if (sample_rate % 14 != 0) {
  198. idcin->audio_chunk_size1 = (sample_rate / 14) *
  199. bytes_per_sample * channels;
  200. idcin->audio_chunk_size2 = (sample_rate / 14 + 1) *
  201. bytes_per_sample * channels;
  202. } else {
  203. idcin->audio_chunk_size1 = idcin->audio_chunk_size2 =
  204. (sample_rate / 14) * bytes_per_sample * channels;
  205. }
  206. idcin->current_audio_chunk = 0;
  207. }
  208. idcin->next_chunk_is_video = 1;
  209. idcin->pts = 0;
  210. return 0;
  211. }
  212. static int idcin_read_packet(AVFormatContext *s,
  213. AVPacket *pkt)
  214. {
  215. int ret;
  216. unsigned int command;
  217. unsigned int chunk_size;
  218. IdcinDemuxContext *idcin = s->priv_data;
  219. AVIOContext *pb = s->pb;
  220. int i;
  221. int palette_scale;
  222. unsigned char r, g, b;
  223. unsigned char palette_buffer[768];
  224. uint32_t palette[256];
  225. if (s->pb->eof_reached)
  226. return AVERROR(EIO);
  227. if (idcin->next_chunk_is_video) {
  228. command = avio_rl32(pb);
  229. if (command == 2) {
  230. return AVERROR(EIO);
  231. } else if (command == 1) {
  232. /* trigger a palette change */
  233. if (avio_read(pb, palette_buffer, 768) != 768)
  234. return AVERROR(EIO);
  235. /* scale the palette as necessary */
  236. palette_scale = 2;
  237. for (i = 0; i < 768; i++)
  238. if (palette_buffer[i] > 63) {
  239. palette_scale = 0;
  240. break;
  241. }
  242. for (i = 0; i < 256; i++) {
  243. r = palette_buffer[i * 3 ] << palette_scale;
  244. g = palette_buffer[i * 3 + 1] << palette_scale;
  245. b = palette_buffer[i * 3 + 2] << palette_scale;
  246. palette[i] = (r << 16) | (g << 8) | (b);
  247. }
  248. }
  249. chunk_size = avio_rl32(pb);
  250. /* skip the number of decoded bytes (always equal to width * height) */
  251. avio_skip(pb, 4);
  252. chunk_size -= 4;
  253. ret= av_get_packet(pb, pkt, chunk_size);
  254. if (ret < 0)
  255. return ret;
  256. if (command == 1) {
  257. uint8_t *pal;
  258. pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE,
  259. AVPALETTE_SIZE);
  260. if (ret < 0)
  261. return ret;
  262. memcpy(pal, palette, AVPALETTE_SIZE);
  263. }
  264. pkt->stream_index = idcin->video_stream_index;
  265. pkt->pts = idcin->pts;
  266. } else {
  267. /* send out the audio chunk */
  268. if (idcin->current_audio_chunk)
  269. chunk_size = idcin->audio_chunk_size2;
  270. else
  271. chunk_size = idcin->audio_chunk_size1;
  272. ret= av_get_packet(pb, pkt, chunk_size);
  273. if (ret < 0)
  274. return ret;
  275. pkt->stream_index = idcin->audio_stream_index;
  276. pkt->pts = idcin->pts;
  277. idcin->current_audio_chunk ^= 1;
  278. idcin->pts++;
  279. }
  280. if (idcin->audio_present)
  281. idcin->next_chunk_is_video ^= 1;
  282. return ret;
  283. }
  284. AVInputFormat ff_idcin_demuxer = {
  285. .name = "idcin",
  286. .long_name = NULL_IF_CONFIG_SMALL("id Cinematic"),
  287. .priv_data_size = sizeof(IdcinDemuxContext),
  288. .read_probe = idcin_probe,
  289. .read_header = idcin_read_header,
  290. .read_packet = idcin_read_packet,
  291. };