psxstr.c 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. /*
  2. * Sony Playstation (PSX) STR 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
  23. * PSX STR file demuxer
  24. * by Mike Melanson (melanson@pcisys.net)
  25. * This module handles streams that have been ripped from Sony Playstation
  26. * CD games. This demuxer can handle either raw STR files (which are just
  27. * concatenations of raw compact disc sectors) or STR files with 0x2C-byte
  28. * RIFF headers, followed by CD sectors.
  29. */
  30. #include "libavutil/intreadwrite.h"
  31. #include "avformat.h"
  32. #define RIFF_TAG MKTAG('R', 'I', 'F', 'F')
  33. #define CDXA_TAG MKTAG('C', 'D', 'X', 'A')
  34. #define RAW_CD_SECTOR_SIZE 2352
  35. #define RAW_CD_SECTOR_DATA_SIZE 2304
  36. #define VIDEO_DATA_CHUNK_SIZE 0x7E0
  37. #define VIDEO_DATA_HEADER_SIZE 0x38
  38. #define RIFF_HEADER_SIZE 0x2C
  39. #define CDXA_TYPE_MASK 0x0E
  40. #define CDXA_TYPE_DATA 0x08
  41. #define CDXA_TYPE_AUDIO 0x04
  42. #define CDXA_TYPE_VIDEO 0x02
  43. #define STR_MAGIC (0x80010160)
  44. typedef struct StrChannel {
  45. /* video parameters */
  46. int video_stream_index;
  47. AVPacket tmp_pkt;
  48. /* audio parameters */
  49. int audio_stream_index;
  50. } StrChannel;
  51. typedef struct StrDemuxContext {
  52. /* a STR file can contain up to 32 channels of data */
  53. StrChannel channels[32];
  54. } StrDemuxContext;
  55. static const char sync_header[12] = {0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00};
  56. static int str_probe(AVProbeData *p)
  57. {
  58. uint8_t *sector= p->buf;
  59. uint8_t *end= sector + p->buf_size;
  60. int aud=0, vid=0;
  61. if (p->buf_size < RAW_CD_SECTOR_SIZE)
  62. return 0;
  63. if ((AV_RL32(&p->buf[0]) == RIFF_TAG) &&
  64. (AV_RL32(&p->buf[8]) == CDXA_TAG)) {
  65. /* RIFF header seen; skip 0x2C bytes */
  66. sector += RIFF_HEADER_SIZE;
  67. }
  68. while (end - sector >= RAW_CD_SECTOR_SIZE) {
  69. /* look for CD sync header (00, 0xFF x 10, 00) */
  70. if (memcmp(sector,sync_header,sizeof(sync_header)))
  71. return 0;
  72. if (sector[0x11] >= 32)
  73. return 0;
  74. switch (sector[0x12] & CDXA_TYPE_MASK) {
  75. case CDXA_TYPE_DATA:
  76. case CDXA_TYPE_VIDEO: {
  77. int current_sector = AV_RL16(&sector[0x1C]);
  78. int sector_count = AV_RL16(&sector[0x1E]);
  79. int frame_size = AV_RL32(&sector[0x24]);
  80. if(!( frame_size>=0
  81. && current_sector < sector_count
  82. && sector_count*VIDEO_DATA_CHUNK_SIZE >=frame_size)){
  83. return 0;
  84. }
  85. /*st->codec->width = AV_RL16(&sector[0x28]);
  86. st->codec->height = AV_RL16(&sector[0x2A]);*/
  87. // if (current_sector == sector_count-1) {
  88. vid++;
  89. // }
  90. }
  91. break;
  92. case CDXA_TYPE_AUDIO:
  93. if(sector[0x13]&0x2A)
  94. return 0;
  95. aud++;
  96. break;
  97. default:
  98. if(sector[0x12] & CDXA_TYPE_MASK)
  99. return 0;
  100. }
  101. sector += RAW_CD_SECTOR_SIZE;
  102. }
  103. /* MPEG files (like those ripped from VCDs) can also look like this;
  104. * only return half certainty */
  105. if(vid+aud > 3) return 50;
  106. else if(vid+aud) return 1;
  107. else return 0;
  108. }
  109. static int str_read_header(AVFormatContext *s,
  110. AVFormatParameters *ap)
  111. {
  112. AVIOContext *pb = s->pb;
  113. StrDemuxContext *str = s->priv_data;
  114. unsigned char sector[RAW_CD_SECTOR_SIZE];
  115. int start;
  116. int i;
  117. /* skip over any RIFF header */
  118. if (avio_read(pb, sector, RIFF_HEADER_SIZE) != RIFF_HEADER_SIZE)
  119. return AVERROR(EIO);
  120. if (AV_RL32(&sector[0]) == RIFF_TAG)
  121. start = RIFF_HEADER_SIZE;
  122. else
  123. start = 0;
  124. avio_seek(pb, start, SEEK_SET);
  125. for(i=0; i<32; i++){
  126. str->channels[i].video_stream_index=
  127. str->channels[i].audio_stream_index= -1;
  128. }
  129. s->ctx_flags |= AVFMTCTX_NOHEADER;
  130. return 0;
  131. }
  132. static int str_read_packet(AVFormatContext *s,
  133. AVPacket *ret_pkt)
  134. {
  135. AVIOContext *pb = s->pb;
  136. StrDemuxContext *str = s->priv_data;
  137. unsigned char sector[RAW_CD_SECTOR_SIZE];
  138. int channel;
  139. AVPacket *pkt;
  140. AVStream *st;
  141. while (1) {
  142. if (avio_read(pb, sector, RAW_CD_SECTOR_SIZE) != RAW_CD_SECTOR_SIZE)
  143. return AVERROR(EIO);
  144. channel = sector[0x11];
  145. if (channel >= 32)
  146. return AVERROR_INVALIDDATA;
  147. switch (sector[0x12] & CDXA_TYPE_MASK) {
  148. case CDXA_TYPE_DATA:
  149. case CDXA_TYPE_VIDEO:
  150. {
  151. int current_sector = AV_RL16(&sector[0x1C]);
  152. int sector_count = AV_RL16(&sector[0x1E]);
  153. int frame_size = AV_RL32(&sector[0x24]);
  154. if(!( frame_size>=0
  155. && current_sector < sector_count
  156. && sector_count*VIDEO_DATA_CHUNK_SIZE >=frame_size)){
  157. av_log(s, AV_LOG_ERROR, "Invalid parameters %d %d %d\n", current_sector, sector_count, frame_size);
  158. break;
  159. }
  160. if(str->channels[channel].video_stream_index < 0){
  161. /* allocate a new AVStream */
  162. st = av_new_stream(s, 0);
  163. if (!st)
  164. return AVERROR(ENOMEM);
  165. av_set_pts_info(st, 64, 1, 15);
  166. str->channels[channel].video_stream_index = st->index;
  167. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  168. st->codec->codec_id = CODEC_ID_MDEC;
  169. st->codec->codec_tag = 0; /* no fourcc */
  170. st->codec->width = AV_RL16(&sector[0x28]);
  171. st->codec->height = AV_RL16(&sector[0x2A]);
  172. }
  173. /* if this is the first sector of the frame, allocate a pkt */
  174. pkt = &str->channels[channel].tmp_pkt;
  175. if(pkt->size != sector_count*VIDEO_DATA_CHUNK_SIZE){
  176. if(pkt->data)
  177. av_log(s, AV_LOG_ERROR, "missmatching sector_count\n");
  178. av_free_packet(pkt);
  179. if (av_new_packet(pkt, sector_count*VIDEO_DATA_CHUNK_SIZE))
  180. return AVERROR(EIO);
  181. pkt->pos= avio_tell(pb) - RAW_CD_SECTOR_SIZE;
  182. pkt->stream_index =
  183. str->channels[channel].video_stream_index;
  184. }
  185. memcpy(pkt->data + current_sector*VIDEO_DATA_CHUNK_SIZE,
  186. sector + VIDEO_DATA_HEADER_SIZE,
  187. VIDEO_DATA_CHUNK_SIZE);
  188. if (current_sector == sector_count-1) {
  189. pkt->size= frame_size;
  190. *ret_pkt = *pkt;
  191. pkt->data= NULL;
  192. pkt->size= -1;
  193. return 0;
  194. }
  195. }
  196. break;
  197. case CDXA_TYPE_AUDIO:
  198. if(str->channels[channel].audio_stream_index < 0){
  199. int fmt = sector[0x13];
  200. /* allocate a new AVStream */
  201. st = av_new_stream(s, 0);
  202. if (!st)
  203. return AVERROR(ENOMEM);
  204. str->channels[channel].audio_stream_index = st->index;
  205. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  206. st->codec->codec_id = CODEC_ID_ADPCM_XA;
  207. st->codec->codec_tag = 0; /* no fourcc */
  208. st->codec->channels = (fmt&1)?2:1;
  209. st->codec->sample_rate = (fmt&4)?18900:37800;
  210. // st->codec->bit_rate = 0; //FIXME;
  211. st->codec->block_align = 128;
  212. av_set_pts_info(st, 64, 128, st->codec->sample_rate);
  213. }
  214. pkt = ret_pkt;
  215. if (av_new_packet(pkt, 2304))
  216. return AVERROR(EIO);
  217. memcpy(pkt->data,sector+24,2304);
  218. pkt->stream_index =
  219. str->channels[channel].audio_stream_index;
  220. return 0;
  221. break;
  222. default:
  223. av_log(s, AV_LOG_WARNING, "Unknown sector type %02X\n", sector[0x12]);
  224. /* drop the sector and move on */
  225. break;
  226. }
  227. if (url_feof(pb))
  228. return AVERROR(EIO);
  229. }
  230. }
  231. static int str_read_close(AVFormatContext *s)
  232. {
  233. StrDemuxContext *str = s->priv_data;
  234. int i;
  235. for(i=0; i<32; i++){
  236. if(str->channels[i].tmp_pkt.data)
  237. av_free_packet(&str->channels[i].tmp_pkt);
  238. }
  239. return 0;
  240. }
  241. AVInputFormat ff_str_demuxer = {
  242. "psxstr",
  243. NULL_IF_CONFIG_SMALL("Sony Playstation STR format"),
  244. sizeof(StrDemuxContext),
  245. str_probe,
  246. str_read_header,
  247. str_read_packet,
  248. str_read_close,
  249. };