mpc8.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. /*
  2. * Musepack SV8 demuxer
  3. * Copyright (c) 2007 Konstantin Shishkov
  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. #include "libavcodec/get_bits.h"
  22. #include "libavcodec/unary.h"
  23. #include "apetag.h"
  24. #include "avformat.h"
  25. #include "internal.h"
  26. #include "avio_internal.h"
  27. /// Two-byte MPC tag
  28. #define MKMPCTAG(a, b) (a | (b << 8))
  29. #define TAG_MPCK MKTAG('M','P','C','K')
  30. /// Reserved MPC tags
  31. enum MPCPacketTags{
  32. TAG_STREAMHDR = MKMPCTAG('S','H'),
  33. TAG_STREAMEND = MKMPCTAG('S','E'),
  34. TAG_AUDIOPACKET = MKMPCTAG('A','P'),
  35. TAG_SEEKTBLOFF = MKMPCTAG('S','O'),
  36. TAG_SEEKTABLE = MKMPCTAG('S','T'),
  37. TAG_REPLAYGAIN = MKMPCTAG('R','G'),
  38. TAG_ENCINFO = MKMPCTAG('E','I'),
  39. };
  40. static const int mpc8_rate[8] = { 44100, 48000, 37800, 32000, -1, -1, -1, -1 };
  41. typedef struct {
  42. int ver;
  43. int64_t header_pos;
  44. int64_t samples;
  45. int64_t apetag_start;
  46. } MPCContext;
  47. static inline int64_t bs_get_v(uint8_t **bs)
  48. {
  49. int64_t v = 0;
  50. int br = 0;
  51. int c;
  52. do {
  53. c = **bs; (*bs)++;
  54. v <<= 7;
  55. v |= c & 0x7F;
  56. br++;
  57. if (br > 10)
  58. return -1;
  59. } while (c & 0x80);
  60. return v - br;
  61. }
  62. static int mpc8_probe(AVProbeData *p)
  63. {
  64. uint8_t *bs = p->buf + 4;
  65. uint8_t *bs_end = bs + p->buf_size;
  66. int64_t size;
  67. if (p->buf_size < 16)
  68. return 0;
  69. if (AV_RL32(p->buf) != TAG_MPCK)
  70. return 0;
  71. while (bs < bs_end + 3) {
  72. int header_found = (bs[0] == 'S' && bs[1] == 'H');
  73. if (bs[0] < 'A' || bs[0] > 'Z' || bs[1] < 'A' || bs[1] > 'Z')
  74. return 0;
  75. bs += 2;
  76. size = bs_get_v(&bs);
  77. if (size < 2)
  78. return 0;
  79. if (bs + size - 2 >= bs_end)
  80. return AVPROBE_SCORE_MAX / 4 - 1; //seems to be valid MPC but no header yet
  81. if (header_found) {
  82. if (size < 11 || size > 28)
  83. return 0;
  84. if (!AV_RL32(bs)) //zero CRC is invalid
  85. return 0;
  86. return AVPROBE_SCORE_MAX;
  87. } else {
  88. bs += size - 2;
  89. }
  90. }
  91. return 0;
  92. }
  93. static inline int64_t gb_get_v(GetBitContext *gb)
  94. {
  95. int64_t v = 0;
  96. int bits = 0;
  97. while(get_bits1(gb) && bits < 64-7){
  98. v <<= 7;
  99. v |= get_bits(gb, 7);
  100. bits += 7;
  101. }
  102. v <<= 7;
  103. v |= get_bits(gb, 7);
  104. return v;
  105. }
  106. static void mpc8_get_chunk_header(AVIOContext *pb, int *tag, int64_t *size)
  107. {
  108. int64_t pos;
  109. pos = avio_tell(pb);
  110. *tag = avio_rl16(pb);
  111. *size = ffio_read_varlen(pb);
  112. *size -= avio_tell(pb) - pos;
  113. }
  114. static void mpc8_parse_seektable(AVFormatContext *s, int64_t off)
  115. {
  116. MPCContext *c = s->priv_data;
  117. int tag;
  118. int64_t size, pos, ppos[2];
  119. uint8_t *buf;
  120. int i, t, seekd;
  121. GetBitContext gb;
  122. avio_seek(s->pb, off, SEEK_SET);
  123. mpc8_get_chunk_header(s->pb, &tag, &size);
  124. if(tag != TAG_SEEKTABLE){
  125. av_log(s, AV_LOG_ERROR, "No seek table at given position\n");
  126. return;
  127. }
  128. if(!(buf = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE)))
  129. return;
  130. avio_read(s->pb, buf, size);
  131. init_get_bits(&gb, buf, size * 8);
  132. size = gb_get_v(&gb);
  133. if(size > UINT_MAX/4 || size > c->samples/1152){
  134. av_log(s, AV_LOG_ERROR, "Seek table is too big\n");
  135. return;
  136. }
  137. seekd = get_bits(&gb, 4);
  138. for(i = 0; i < 2; i++){
  139. pos = gb_get_v(&gb) + c->header_pos;
  140. ppos[1 - i] = pos;
  141. av_add_index_entry(s->streams[0], pos, i, 0, 0, AVINDEX_KEYFRAME);
  142. }
  143. for(; i < size; i++){
  144. t = get_unary(&gb, 1, 33) << 12;
  145. t += get_bits(&gb, 12);
  146. if(t & 1)
  147. t = -(t & ~1);
  148. pos = (t >> 1) + ppos[0]*2 - ppos[1];
  149. av_add_index_entry(s->streams[0], pos, i << seekd, 0, 0, AVINDEX_KEYFRAME);
  150. ppos[1] = ppos[0];
  151. ppos[0] = pos;
  152. }
  153. av_free(buf);
  154. }
  155. static void mpc8_handle_chunk(AVFormatContext *s, int tag, int64_t chunk_pos, int64_t size)
  156. {
  157. AVIOContext *pb = s->pb;
  158. int64_t pos, off;
  159. switch(tag){
  160. case TAG_SEEKTBLOFF:
  161. pos = avio_tell(pb) + size;
  162. off = ffio_read_varlen(pb);
  163. mpc8_parse_seektable(s, chunk_pos + off);
  164. avio_seek(pb, pos, SEEK_SET);
  165. break;
  166. default:
  167. avio_skip(pb, size);
  168. }
  169. }
  170. static int mpc8_read_header(AVFormatContext *s)
  171. {
  172. MPCContext *c = s->priv_data;
  173. AVIOContext *pb = s->pb;
  174. AVStream *st;
  175. int tag = 0;
  176. int64_t size, pos;
  177. c->header_pos = avio_tell(pb);
  178. if(avio_rl32(pb) != TAG_MPCK){
  179. av_log(s, AV_LOG_ERROR, "Not a Musepack8 file\n");
  180. return AVERROR_INVALIDDATA;
  181. }
  182. while(!url_feof(pb)){
  183. pos = avio_tell(pb);
  184. mpc8_get_chunk_header(pb, &tag, &size);
  185. if(tag == TAG_STREAMHDR)
  186. break;
  187. mpc8_handle_chunk(s, tag, pos, size);
  188. }
  189. if(tag != TAG_STREAMHDR){
  190. av_log(s, AV_LOG_ERROR, "Stream header not found\n");
  191. return AVERROR_INVALIDDATA;
  192. }
  193. pos = avio_tell(pb);
  194. avio_skip(pb, 4); //CRC
  195. c->ver = avio_r8(pb);
  196. if(c->ver != 8){
  197. av_log(s, AV_LOG_ERROR, "Unknown stream version %d\n", c->ver);
  198. return AVERROR_PATCHWELCOME;
  199. }
  200. c->samples = ffio_read_varlen(pb);
  201. ffio_read_varlen(pb); //silence samples at the beginning
  202. st = avformat_new_stream(s, NULL);
  203. if (!st)
  204. return AVERROR(ENOMEM);
  205. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  206. st->codec->codec_id = AV_CODEC_ID_MUSEPACK8;
  207. st->codec->bits_per_coded_sample = 16;
  208. st->codec->extradata_size = 2;
  209. st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
  210. avio_read(pb, st->codec->extradata, st->codec->extradata_size);
  211. st->codec->channels = (st->codec->extradata[1] >> 4) + 1;
  212. st->codec->sample_rate = mpc8_rate[st->codec->extradata[0] >> 5];
  213. avpriv_set_pts_info(st, 32, 1152 << (st->codec->extradata[1]&3)*2, st->codec->sample_rate);
  214. st->start_time = 0;
  215. st->duration = c->samples / (1152 << (st->codec->extradata[1]&3)*2);
  216. size -= avio_tell(pb) - pos;
  217. if (size > 0)
  218. avio_skip(pb, size);
  219. if (pb->seekable) {
  220. int64_t pos = avio_tell(s->pb);
  221. c->apetag_start = ff_ape_parse_tag(s);
  222. avio_seek(s->pb, pos, SEEK_SET);
  223. }
  224. return 0;
  225. }
  226. static int mpc8_read_packet(AVFormatContext *s, AVPacket *pkt)
  227. {
  228. MPCContext *c = s->priv_data;
  229. int tag;
  230. int64_t pos, size;
  231. while(!url_feof(s->pb)){
  232. pos = avio_tell(s->pb);
  233. /* don't return bogus packets with the ape tag data */
  234. if (c->apetag_start && pos >= c->apetag_start)
  235. return AVERROR_EOF;
  236. mpc8_get_chunk_header(s->pb, &tag, &size);
  237. if (size < 0)
  238. return -1;
  239. if(tag == TAG_AUDIOPACKET){
  240. if(av_get_packet(s->pb, pkt, size) < 0)
  241. return AVERROR(ENOMEM);
  242. pkt->stream_index = 0;
  243. pkt->duration = 1;
  244. return 0;
  245. }
  246. if(tag == TAG_STREAMEND)
  247. return AVERROR(EIO);
  248. mpc8_handle_chunk(s, tag, pos, size);
  249. }
  250. return AVERROR_EOF;
  251. }
  252. static int mpc8_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
  253. {
  254. AVStream *st = s->streams[stream_index];
  255. int index = av_index_search_timestamp(st, timestamp, flags);
  256. if(index < 0) return -1;
  257. if (avio_seek(s->pb, st->index_entries[index].pos, SEEK_SET) < 0)
  258. return -1;
  259. ff_update_cur_dts(s, st, st->index_entries[index].timestamp);
  260. return 0;
  261. }
  262. AVInputFormat ff_mpc8_demuxer = {
  263. .name = "mpc8",
  264. .long_name = NULL_IF_CONFIG_SMALL("Musepack SV8"),
  265. .priv_data_size = sizeof(MPCContext),
  266. .read_probe = mpc8_probe,
  267. .read_header = mpc8_read_header,
  268. .read_packet = mpc8_read_packet,
  269. .read_seek = mpc8_read_seek,
  270. };