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.

314 lines
9.8KB

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