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.

209 lines
6.4KB

  1. /*
  2. * FLI/FLC Animation 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 flic.c
  23. * FLI/FLC file demuxer
  24. * by Mike Melanson (melanson@pcisys.net)
  25. * for more information on the .fli/.flc file format and all of its many
  26. * variations, visit:
  27. * http://www.compuphase.com/flic.htm
  28. *
  29. * This demuxer handles standard 0xAF11- and 0xAF12-type FLIs. It also
  30. * handles special FLIs from the PC game "Magic Carpet".
  31. */
  32. #include "avformat.h"
  33. #define FLIC_FILE_MAGIC_1 0xAF11
  34. #define FLIC_FILE_MAGIC_2 0xAF12
  35. #define FLIC_FILE_MAGIC_3 0xAF44 /* Flic Type for Extended FLX Format which
  36. originated in Dave's Targa Animator (DTA) */
  37. #define FLIC_CHUNK_MAGIC_1 0xF1FA
  38. #define FLIC_CHUNK_MAGIC_2 0xF5FA
  39. #define FLIC_MC_SPEED 5 /* speed for Magic Carpet game FLIs */
  40. #define FLIC_DEFAULT_SPEED 5 /* for FLIs that have 0 speed */
  41. #define FLIC_HEADER_SIZE 128
  42. #define FLIC_PREAMBLE_SIZE 6
  43. typedef struct FlicDemuxContext {
  44. int video_stream_index;
  45. int frame_number;
  46. } FlicDemuxContext;
  47. static int flic_probe(AVProbeData *p)
  48. {
  49. int magic_number;
  50. if(p->buf_size < FLIC_HEADER_SIZE)
  51. return 0;
  52. magic_number = AV_RL16(&p->buf[4]);
  53. if ((magic_number != FLIC_FILE_MAGIC_1) &&
  54. (magic_number != FLIC_FILE_MAGIC_2) &&
  55. (magic_number != FLIC_FILE_MAGIC_3))
  56. return 0;
  57. if(AV_RL16(&p->buf[0x10]) != FLIC_CHUNK_MAGIC_1){
  58. if(AV_RL32(&p->buf[0x10]) > 2000)
  59. return 0;
  60. }
  61. if( AV_RL16(&p->buf[0x08]) > 4096
  62. || AV_RL16(&p->buf[0x0A]) > 4096)
  63. return 0;
  64. return AVPROBE_SCORE_MAX;
  65. }
  66. static int flic_read_header(AVFormatContext *s,
  67. AVFormatParameters *ap)
  68. {
  69. FlicDemuxContext *flic = s->priv_data;
  70. ByteIOContext *pb = s->pb;
  71. unsigned char header[FLIC_HEADER_SIZE];
  72. AVStream *st;
  73. int speed;
  74. int magic_number;
  75. flic->frame_number = 0;
  76. /* load the whole header and pull out the width and height */
  77. if (get_buffer(pb, header, FLIC_HEADER_SIZE) != FLIC_HEADER_SIZE)
  78. return AVERROR(EIO);
  79. magic_number = AV_RL16(&header[4]);
  80. speed = AV_RL32(&header[0x10]);
  81. if (speed == 0)
  82. speed = FLIC_DEFAULT_SPEED;
  83. /* initialize the decoder streams */
  84. st = av_new_stream(s, 0);
  85. if (!st)
  86. return AVERROR(ENOMEM);
  87. flic->video_stream_index = st->index;
  88. st->codec->codec_type = CODEC_TYPE_VIDEO;
  89. st->codec->codec_id = CODEC_ID_FLIC;
  90. st->codec->codec_tag = 0; /* no fourcc */
  91. st->codec->width = AV_RL16(&header[0x08]);
  92. st->codec->height = AV_RL16(&header[0x0A]);
  93. if (!st->codec->width || !st->codec->height) {
  94. /* Ugly hack needed for the following sample: */
  95. /* http://samples.mplayerhq.hu/fli-flc/fli-bugs/specular.flc */
  96. av_log(s, AV_LOG_WARNING,
  97. "File with no specified width/height. Trying 640x480.\n");
  98. st->codec->width = 640;
  99. st->codec->height = 480;
  100. }
  101. /* send over the whole 128-byte FLIC header */
  102. st->codec->extradata_size = FLIC_HEADER_SIZE;
  103. st->codec->extradata = av_malloc(FLIC_HEADER_SIZE);
  104. memcpy(st->codec->extradata, header, FLIC_HEADER_SIZE);
  105. /* Time to figure out the framerate: If there is a FLIC chunk magic
  106. * number at offset 0x10, assume this is from the Bullfrog game,
  107. * Magic Carpet. */
  108. if (AV_RL16(&header[0x10]) == FLIC_CHUNK_MAGIC_1) {
  109. av_set_pts_info(st, 64, FLIC_MC_SPEED, 70);
  110. /* rewind the stream since the first chunk is at offset 12 */
  111. url_fseek(pb, 12, SEEK_SET);
  112. /* send over abbreviated FLIC header chunk */
  113. av_free(st->codec->extradata);
  114. st->codec->extradata_size = 12;
  115. st->codec->extradata = av_malloc(12);
  116. memcpy(st->codec->extradata, header, 12);
  117. } else if (magic_number == FLIC_FILE_MAGIC_1) {
  118. av_set_pts_info(st, 64, speed, 70);
  119. } else if ((magic_number == FLIC_FILE_MAGIC_2) ||
  120. (magic_number == FLIC_FILE_MAGIC_3)) {
  121. av_set_pts_info(st, 64, speed, 1000);
  122. } else {
  123. av_log(s, AV_LOG_INFO, "Invalid or unsupported magic chunk in file\n");
  124. return AVERROR_INVALIDDATA;
  125. }
  126. return 0;
  127. }
  128. static int flic_read_packet(AVFormatContext *s,
  129. AVPacket *pkt)
  130. {
  131. FlicDemuxContext *flic = s->priv_data;
  132. ByteIOContext *pb = s->pb;
  133. int packet_read = 0;
  134. unsigned int size;
  135. int magic;
  136. int ret = 0;
  137. unsigned char preamble[FLIC_PREAMBLE_SIZE];
  138. while (!packet_read) {
  139. if ((ret = get_buffer(pb, preamble, FLIC_PREAMBLE_SIZE)) !=
  140. FLIC_PREAMBLE_SIZE) {
  141. ret = AVERROR(EIO);
  142. break;
  143. }
  144. size = AV_RL32(&preamble[0]);
  145. magic = AV_RL16(&preamble[4]);
  146. if (((magic == FLIC_CHUNK_MAGIC_1) || (magic == FLIC_CHUNK_MAGIC_2)) && size > FLIC_PREAMBLE_SIZE) {
  147. if (av_new_packet(pkt, size)) {
  148. ret = AVERROR(EIO);
  149. break;
  150. }
  151. pkt->stream_index = flic->video_stream_index;
  152. pkt->pts = flic->frame_number++;
  153. pkt->pos = url_ftell(pb);
  154. memcpy(pkt->data, preamble, FLIC_PREAMBLE_SIZE);
  155. ret = get_buffer(pb, pkt->data + FLIC_PREAMBLE_SIZE,
  156. size - FLIC_PREAMBLE_SIZE);
  157. if (ret != size - FLIC_PREAMBLE_SIZE) {
  158. av_free_packet(pkt);
  159. ret = AVERROR(EIO);
  160. }
  161. packet_read = 1;
  162. } else {
  163. /* not interested in this chunk */
  164. url_fseek(pb, size - 6, SEEK_CUR);
  165. }
  166. }
  167. return ret;
  168. }
  169. AVInputFormat flic_demuxer = {
  170. "flic",
  171. NULL_IF_CONFIG_SMALL("FLI/FLC/FLX animation format"),
  172. sizeof(FlicDemuxContext),
  173. flic_probe,
  174. flic_read_header,
  175. flic_read_packet,
  176. };