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.

100 lines
2.9KB

  1. /*
  2. * RSO demuxer
  3. * Copyright (c) 2001 Fabrice Bellard (original AU code)
  4. * Copyright (c) 2010 Rafael Carre
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "libavutil/channel_layout.h"
  23. #include "libavutil/intreadwrite.h"
  24. #include "avformat.h"
  25. #include "internal.h"
  26. #include "pcm.h"
  27. #include "riff.h"
  28. #include "rso.h"
  29. static int rso_read_header(AVFormatContext *s)
  30. {
  31. AVIOContext *pb = s->pb;
  32. int id, rate, bps;
  33. unsigned int size;
  34. enum AVCodecID codec;
  35. AVStream *st;
  36. id = avio_rb16(pb);
  37. size = avio_rb16(pb);
  38. rate = avio_rb16(pb);
  39. avio_rb16(pb); /* play mode ? (0x0000 = don't loop) */
  40. codec = ff_codec_get_id(ff_codec_rso_tags, id);
  41. if (codec == AV_CODEC_ID_ADPCM_IMA_WAV) {
  42. av_log(s, AV_LOG_ERROR, "ADPCM in RSO not implemented\n");
  43. return AVERROR_PATCHWELCOME;
  44. }
  45. bps = av_get_bits_per_sample(codec);
  46. if (!bps) {
  47. av_log_ask_for_sample(s, "could not determine bits per sample\n");
  48. return AVERROR_INVALIDDATA;
  49. }
  50. /* now we are ready: build format streams */
  51. st = avformat_new_stream(s, NULL);
  52. if (!st)
  53. return AVERROR(ENOMEM);
  54. st->duration = (size * 8) / bps;
  55. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  56. st->codec->codec_tag = id;
  57. st->codec->codec_id = codec;
  58. st->codec->channels = 1;
  59. st->codec->channel_layout = AV_CH_LAYOUT_MONO;
  60. st->codec->sample_rate = rate;
  61. avpriv_set_pts_info(st, 64, 1, rate);
  62. return 0;
  63. }
  64. #define BLOCK_SIZE 1024 /* in samples */
  65. static int rso_read_packet(AVFormatContext *s, AVPacket *pkt)
  66. {
  67. int bps = av_get_bits_per_sample(s->streams[0]->codec->codec_id);
  68. int ret = av_get_packet(s->pb, pkt, BLOCK_SIZE * bps >> 3);
  69. if (ret < 0)
  70. return ret;
  71. pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
  72. pkt->stream_index = 0;
  73. return 0;
  74. }
  75. AVInputFormat ff_rso_demuxer = {
  76. .name = "rso",
  77. .long_name = NULL_IF_CONFIG_SMALL("Lego Mindstorms RSO"),
  78. .extensions = "rso",
  79. .read_header = rso_read_header,
  80. .read_packet = rso_read_packet,
  81. .read_seek = ff_pcm_read_seek,
  82. .codec_tag = (const AVCodecTag* const []){ff_codec_rso_tags, 0},
  83. };