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.

280 lines
8.8KB

  1. /*
  2. * Sony Playstation (PSX) STR 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. * 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 char 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. 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. /* look for CD sync header (00, 0xFF x 10, 00) */
  69. if (memcmp(sector,sync_header,sizeof(sync_header)))
  70. return 0;
  71. if(sector[0x11] >= 32)
  72. return 0;
  73. if( (sector[0x12] & CDXA_TYPE_MASK) != CDXA_TYPE_VIDEO
  74. && (sector[0x12] & CDXA_TYPE_MASK) != CDXA_TYPE_AUDIO
  75. && (sector[0x12] & CDXA_TYPE_MASK) != CDXA_TYPE_DATA)
  76. return 0;
  77. /* MPEG files (like those ripped from VCDs) can also look like this;
  78. * only return half certainty */
  79. return 50;
  80. }
  81. static int str_read_header(AVFormatContext *s)
  82. {
  83. AVIOContext *pb = s->pb;
  84. StrDemuxContext *str = s->priv_data;
  85. unsigned char sector[RAW_CD_SECTOR_SIZE];
  86. int start;
  87. int i;
  88. /* skip over any RIFF header */
  89. if (avio_read(pb, sector, RIFF_HEADER_SIZE) != RIFF_HEADER_SIZE)
  90. return AVERROR(EIO);
  91. if (AV_RL32(&sector[0]) == RIFF_TAG)
  92. start = RIFF_HEADER_SIZE;
  93. else
  94. start = 0;
  95. avio_seek(pb, start, SEEK_SET);
  96. for(i=0; i<32; i++){
  97. str->channels[i].video_stream_index=
  98. str->channels[i].audio_stream_index= -1;
  99. }
  100. s->ctx_flags |= AVFMTCTX_NOHEADER;
  101. return 0;
  102. }
  103. static int str_read_packet(AVFormatContext *s,
  104. AVPacket *ret_pkt)
  105. {
  106. AVIOContext *pb = s->pb;
  107. StrDemuxContext *str = s->priv_data;
  108. unsigned char sector[RAW_CD_SECTOR_SIZE];
  109. int channel;
  110. AVPacket *pkt;
  111. AVStream *st;
  112. while (1) {
  113. if (avio_read(pb, sector, RAW_CD_SECTOR_SIZE) != RAW_CD_SECTOR_SIZE)
  114. return AVERROR(EIO);
  115. channel = sector[0x11];
  116. if (channel >= 32)
  117. return AVERROR_INVALIDDATA;
  118. switch (sector[0x12] & CDXA_TYPE_MASK) {
  119. case CDXA_TYPE_DATA:
  120. case CDXA_TYPE_VIDEO:
  121. {
  122. int current_sector = AV_RL16(&sector[0x1C]);
  123. int sector_count = AV_RL16(&sector[0x1E]);
  124. int frame_size = AV_RL32(&sector[0x24]);
  125. if(!( frame_size>=0
  126. && current_sector < sector_count
  127. && sector_count*VIDEO_DATA_CHUNK_SIZE >=frame_size)){
  128. av_log(s, AV_LOG_ERROR, "Invalid parameters %d %d %d\n", current_sector, sector_count, frame_size);
  129. break;
  130. }
  131. if(str->channels[channel].video_stream_index < 0){
  132. /* allocate a new AVStream */
  133. st = avformat_new_stream(s, NULL);
  134. if (!st)
  135. return AVERROR(ENOMEM);
  136. avpriv_set_pts_info(st, 64, 1, 15);
  137. str->channels[channel].video_stream_index = st->index;
  138. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  139. st->codec->codec_id = AV_CODEC_ID_MDEC;
  140. st->codec->codec_tag = 0; /* no fourcc */
  141. st->codec->width = AV_RL16(&sector[0x28]);
  142. st->codec->height = AV_RL16(&sector[0x2A]);
  143. }
  144. /* if this is the first sector of the frame, allocate a pkt */
  145. pkt = &str->channels[channel].tmp_pkt;
  146. if(pkt->size != sector_count*VIDEO_DATA_CHUNK_SIZE){
  147. if(pkt->data)
  148. av_log(s, AV_LOG_ERROR, "missmatching sector_count\n");
  149. av_free_packet(pkt);
  150. if (av_new_packet(pkt, sector_count*VIDEO_DATA_CHUNK_SIZE))
  151. return AVERROR(EIO);
  152. pkt->pos= avio_tell(pb) - RAW_CD_SECTOR_SIZE;
  153. pkt->stream_index =
  154. str->channels[channel].video_stream_index;
  155. }
  156. memcpy(pkt->data + current_sector*VIDEO_DATA_CHUNK_SIZE,
  157. sector + VIDEO_DATA_HEADER_SIZE,
  158. VIDEO_DATA_CHUNK_SIZE);
  159. if (current_sector == sector_count-1) {
  160. pkt->size= frame_size;
  161. *ret_pkt = *pkt;
  162. pkt->data= NULL;
  163. pkt->size= -1;
  164. return 0;
  165. }
  166. }
  167. break;
  168. case CDXA_TYPE_AUDIO:
  169. if(str->channels[channel].audio_stream_index < 0){
  170. int fmt = sector[0x13];
  171. /* allocate a new AVStream */
  172. st = avformat_new_stream(s, NULL);
  173. if (!st)
  174. return AVERROR(ENOMEM);
  175. str->channels[channel].audio_stream_index = st->index;
  176. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  177. st->codec->codec_id = AV_CODEC_ID_ADPCM_XA;
  178. st->codec->codec_tag = 0; /* no fourcc */
  179. if (fmt & 1) {
  180. st->codec->channels = 2;
  181. st->codec->channel_layout = AV_CH_LAYOUT_STEREO;
  182. } else {
  183. st->codec->channels = 1;
  184. st->codec->channel_layout = AV_CH_LAYOUT_MONO;
  185. }
  186. st->codec->sample_rate = (fmt&4)?18900:37800;
  187. // st->codec->bit_rate = 0; //FIXME;
  188. st->codec->block_align = 128;
  189. avpriv_set_pts_info(st, 64, 18 * 224 / st->codec->channels,
  190. st->codec->sample_rate);
  191. st->start_time = 0;
  192. }
  193. pkt = ret_pkt;
  194. if (av_new_packet(pkt, 2304))
  195. return AVERROR(EIO);
  196. memcpy(pkt->data,sector+24,2304);
  197. pkt->stream_index =
  198. str->channels[channel].audio_stream_index;
  199. pkt->duration = 1;
  200. return 0;
  201. default:
  202. av_log(s, AV_LOG_WARNING, "Unknown sector type %02X\n", sector[0x12]);
  203. /* drop the sector and move on */
  204. break;
  205. }
  206. if (pb->eof_reached)
  207. return AVERROR(EIO);
  208. }
  209. }
  210. static int str_read_close(AVFormatContext *s)
  211. {
  212. StrDemuxContext *str = s->priv_data;
  213. int i;
  214. for(i=0; i<32; i++){
  215. if(str->channels[i].tmp_pkt.data)
  216. av_free_packet(&str->channels[i].tmp_pkt);
  217. }
  218. return 0;
  219. }
  220. AVInputFormat ff_str_demuxer = {
  221. .name = "psxstr",
  222. .long_name = NULL_IF_CONFIG_SMALL("Sony Playstation STR"),
  223. .priv_data_size = sizeof(StrDemuxContext),
  224. .read_probe = str_probe,
  225. .read_header = str_read_header,
  226. .read_packet = str_read_packet,
  227. .read_close = str_read_close,
  228. .flags = AVFMT_NO_BYTE_SEEK,
  229. };