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.

297 lines
8.7KB

  1. /*
  2. * RL2 Format Demuxer
  3. * Copyright (c) 2008 Sascha Sommer (saschasommer@freenet.de)
  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. * RL2 file demuxer
  23. * @file
  24. * @author Sascha Sommer (saschasommer@freenet.de)
  25. * @see http://wiki.multimedia.cx/index.php?title=RL2
  26. *
  27. * extradata:
  28. * 2 byte le initial drawing offset within 320x200 viewport
  29. * 4 byte le number of used colors
  30. * 256 * 3 bytes rgb palette
  31. * optional background_frame
  32. */
  33. #include <stdint.h>
  34. #include "libavutil/intreadwrite.h"
  35. #include "libavutil/mathematics.h"
  36. #include "avformat.h"
  37. #include "internal.h"
  38. #define EXTRADATA1_SIZE (6 + 256 * 3) ///< video base, clr, palette
  39. #define FORM_TAG MKBETAG('F', 'O', 'R', 'M')
  40. #define RLV2_TAG MKBETAG('R', 'L', 'V', '2')
  41. #define RLV3_TAG MKBETAG('R', 'L', 'V', '3')
  42. typedef struct Rl2DemuxContext {
  43. unsigned int index_pos[2]; ///< indexes in the sample tables
  44. } Rl2DemuxContext;
  45. /**
  46. * check if the file is in rl2 format
  47. * @param p probe buffer
  48. * @return 0 when the probe buffer does not contain rl2 data, > 0 otherwise
  49. */
  50. static int rl2_probe(AVProbeData *p)
  51. {
  52. if(AV_RB32(&p->buf[0]) != FORM_TAG)
  53. return 0;
  54. if(AV_RB32(&p->buf[8]) != RLV2_TAG &&
  55. AV_RB32(&p->buf[8]) != RLV3_TAG)
  56. return 0;
  57. return AVPROBE_SCORE_MAX;
  58. }
  59. /**
  60. * read rl2 header data and setup the avstreams
  61. * @param s demuxer context
  62. * @return 0 on success, AVERROR otherwise
  63. */
  64. static av_cold int rl2_read_header(AVFormatContext *s)
  65. {
  66. AVIOContext *pb = s->pb;
  67. AVStream *st;
  68. unsigned int frame_count;
  69. unsigned int audio_frame_counter = 0;
  70. unsigned int video_frame_counter = 0;
  71. unsigned int back_size;
  72. unsigned short sound_rate;
  73. unsigned short rate;
  74. unsigned short channels;
  75. unsigned short def_sound_size;
  76. unsigned int signature;
  77. unsigned int pts_den = 11025; /* video only case */
  78. unsigned int pts_num = 1103;
  79. unsigned int* chunk_offset = NULL;
  80. int* chunk_size = NULL;
  81. int* audio_size = NULL;
  82. int i;
  83. int ret = 0;
  84. avio_skip(pb,4); /* skip FORM tag */
  85. back_size = avio_rl32(pb); /**< get size of the background frame */
  86. signature = avio_rb32(pb);
  87. avio_skip(pb, 4); /* data size */
  88. frame_count = avio_rl32(pb);
  89. /* disallow back_sizes and frame_counts that may lead to overflows later */
  90. if(back_size > INT_MAX/2 || frame_count > INT_MAX / sizeof(uint32_t))
  91. return AVERROR_INVALIDDATA;
  92. avio_skip(pb, 2); /* encoding mentod */
  93. sound_rate = avio_rl16(pb);
  94. rate = avio_rl16(pb);
  95. channels = avio_rl16(pb);
  96. def_sound_size = avio_rl16(pb);
  97. /** setup video stream */
  98. st = avformat_new_stream(s, NULL);
  99. if(!st)
  100. return AVERROR(ENOMEM);
  101. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  102. st->codec->codec_id = AV_CODEC_ID_RL2;
  103. st->codec->codec_tag = 0; /* no fourcc */
  104. st->codec->width = 320;
  105. st->codec->height = 200;
  106. /** allocate and fill extradata */
  107. st->codec->extradata_size = EXTRADATA1_SIZE;
  108. if(signature == RLV3_TAG && back_size > 0)
  109. st->codec->extradata_size += back_size;
  110. if(ff_get_extradata(st->codec, pb, st->codec->extradata_size) < 0)
  111. return AVERROR(ENOMEM);
  112. /** setup audio stream if present */
  113. if(sound_rate){
  114. if (!channels || channels > 42) {
  115. av_log(s, AV_LOG_ERROR, "Invalid number of channels: %d\n", channels);
  116. return AVERROR_INVALIDDATA;
  117. }
  118. pts_num = def_sound_size;
  119. pts_den = rate;
  120. st = avformat_new_stream(s, NULL);
  121. if (!st)
  122. return AVERROR(ENOMEM);
  123. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  124. st->codec->codec_id = AV_CODEC_ID_PCM_U8;
  125. st->codec->codec_tag = 1;
  126. st->codec->channels = channels;
  127. st->codec->bits_per_coded_sample = 8;
  128. st->codec->sample_rate = rate;
  129. st->codec->bit_rate = st->codec->channels * st->codec->sample_rate *
  130. st->codec->bits_per_coded_sample;
  131. st->codec->block_align = st->codec->channels *
  132. st->codec->bits_per_coded_sample / 8;
  133. avpriv_set_pts_info(st,32,1,rate);
  134. }
  135. avpriv_set_pts_info(s->streams[0], 32, pts_num, pts_den);
  136. chunk_size = av_malloc(frame_count * sizeof(uint32_t));
  137. audio_size = av_malloc(frame_count * sizeof(uint32_t));
  138. chunk_offset = av_malloc(frame_count * sizeof(uint32_t));
  139. if(!chunk_size || !audio_size || !chunk_offset){
  140. av_free(chunk_size);
  141. av_free(audio_size);
  142. av_free(chunk_offset);
  143. return AVERROR(ENOMEM);
  144. }
  145. /** read offset and size tables */
  146. for(i=0; i < frame_count;i++)
  147. chunk_size[i] = avio_rl32(pb);
  148. for(i=0; i < frame_count;i++)
  149. chunk_offset[i] = avio_rl32(pb);
  150. for(i=0; i < frame_count;i++)
  151. audio_size[i] = avio_rl32(pb) & 0xFFFF;
  152. /** build the sample index */
  153. for(i=0;i<frame_count;i++){
  154. if(chunk_size[i] < 0 || audio_size[i] > chunk_size[i]){
  155. ret = AVERROR_INVALIDDATA;
  156. break;
  157. }
  158. if(sound_rate && audio_size[i]){
  159. av_add_index_entry(s->streams[1], chunk_offset[i],
  160. audio_frame_counter,audio_size[i], 0, AVINDEX_KEYFRAME);
  161. audio_frame_counter += audio_size[i] / channels;
  162. }
  163. av_add_index_entry(s->streams[0], chunk_offset[i] + audio_size[i],
  164. video_frame_counter,chunk_size[i]-audio_size[i],0,AVINDEX_KEYFRAME);
  165. ++video_frame_counter;
  166. }
  167. av_free(chunk_size);
  168. av_free(audio_size);
  169. av_free(chunk_offset);
  170. return ret;
  171. }
  172. /**
  173. * read a single audio or video packet
  174. * @param s demuxer context
  175. * @param pkt the packet to be filled
  176. * @return 0 on success, AVERROR otherwise
  177. */
  178. static int rl2_read_packet(AVFormatContext *s,
  179. AVPacket *pkt)
  180. {
  181. Rl2DemuxContext *rl2 = s->priv_data;
  182. AVIOContext *pb = s->pb;
  183. AVIndexEntry *sample = NULL;
  184. int i;
  185. int ret = 0;
  186. int stream_id = -1;
  187. int64_t pos = INT64_MAX;
  188. /** check if there is a valid video or audio entry that can be used */
  189. for(i=0; i<s->nb_streams; i++){
  190. if(rl2->index_pos[i] < s->streams[i]->nb_index_entries
  191. && s->streams[i]->index_entries[ rl2->index_pos[i] ].pos < pos){
  192. sample = &s->streams[i]->index_entries[ rl2->index_pos[i] ];
  193. pos= sample->pos;
  194. stream_id= i;
  195. }
  196. }
  197. if(stream_id == -1)
  198. return AVERROR_EOF;
  199. ++rl2->index_pos[stream_id];
  200. /** position the stream (will probably be there anyway) */
  201. avio_seek(pb, sample->pos, SEEK_SET);
  202. /** fill the packet */
  203. ret = av_get_packet(pb, pkt, sample->size);
  204. if(ret != sample->size){
  205. av_free_packet(pkt);
  206. return AVERROR(EIO);
  207. }
  208. pkt->stream_index = stream_id;
  209. pkt->pts = sample->timestamp;
  210. return ret;
  211. }
  212. /**
  213. * seek to a new timestamp
  214. * @param s demuxer context
  215. * @param stream_index index of the stream that should be seeked
  216. * @param timestamp wanted timestamp
  217. * @param flags direction and seeking mode
  218. * @return 0 on success, -1 otherwise
  219. */
  220. static int rl2_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
  221. {
  222. AVStream *st = s->streams[stream_index];
  223. Rl2DemuxContext *rl2 = s->priv_data;
  224. int i;
  225. int index = av_index_search_timestamp(st, timestamp, flags);
  226. if(index < 0)
  227. return -1;
  228. rl2->index_pos[stream_index] = index;
  229. timestamp = st->index_entries[index].timestamp;
  230. for(i=0; i < s->nb_streams; i++){
  231. AVStream *st2 = s->streams[i];
  232. index = av_index_search_timestamp(st2,
  233. av_rescale_q(timestamp, st->time_base, st2->time_base),
  234. flags | AVSEEK_FLAG_BACKWARD);
  235. if(index < 0)
  236. index = 0;
  237. rl2->index_pos[i] = index;
  238. }
  239. return 0;
  240. }
  241. AVInputFormat ff_rl2_demuxer = {
  242. .name = "rl2",
  243. .long_name = NULL_IF_CONFIG_SMALL("RL2"),
  244. .priv_data_size = sizeof(Rl2DemuxContext),
  245. .read_probe = rl2_probe,
  246. .read_header = rl2_read_header,
  247. .read_packet = rl2_read_packet,
  248. .read_seek = rl2_read_seek,
  249. };