| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Musepack demuxer | 
					
						
							|  |  |  |  * Copyright (c) 2006 Konstantin Shishkov | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2007-07-05 10:40:25 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-05-09 11:56:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-13 16:20:26 +00:00
										 |  |  | #include "libavcodec/get_bits.h"
 | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | #include "avformat.h"
 | 
					
						
							| 
									
										
										
										
											2009-01-19 21:54:06 +00:00
										 |  |  | #include "id3v2.h"
 | 
					
						
							| 
									
										
										
										
											2009-08-11 17:18:10 +00:00
										 |  |  | #include "apetag.h"
 | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MPC_FRAMESIZE  1152
 | 
					
						
							| 
									
										
										
										
											2007-01-01 05:32:27 +00:00
										 |  |  | #define DELAY_FRAMES   32
 | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const int mpc_rate[4] = { 44100, 48000, 37800, 32000 }; | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |     int64_t pos; | 
					
						
							|  |  |  |     int size, skip; | 
					
						
							|  |  |  | }MPCFrame; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |     int ver; | 
					
						
							|  |  |  |     uint32_t curframe, lastframe; | 
					
						
							|  |  |  |     uint32_t fcount; | 
					
						
							|  |  |  |     MPCFrame *frames; | 
					
						
							|  |  |  |     int curbits; | 
					
						
							|  |  |  |     int frames_noted; | 
					
						
							|  |  |  | } MPCContext; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mpc_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const uint8_t *d = p->buf; | 
					
						
							| 
									
										
										
										
											2009-01-19 21:54:06 +00:00
										 |  |  |     if (ff_id3v2_match(d)) { | 
					
						
							|  |  |  |         d += ff_id3v2_tag_len(d); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (d+3 < p->buf+p->buf_size) | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     if (d[0] == 'M' && d[1] == 'P' && d[2] == '+' && (d[3] == 0x17 || d[3] == 0x7)) | 
					
						
							|  |  |  |         return AVPROBE_SCORE_MAX; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mpc_read_header(AVFormatContext *s, AVFormatParameters *ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     MPCContext *c = s->priv_data; | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							| 
									
										
										
										
											2009-08-11 17:28:56 +00:00
										 |  |  |     int t, ret; | 
					
						
							|  |  |  |     int64_t pos = url_ftell(s->pb); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     t = get_le24(s->pb); | 
					
						
							| 
									
										
										
										
											2007-01-01 05:29:53 +00:00
										 |  |  |     if(t != MKTAG('M', 'P', '+', 0)){ | 
					
						
							| 
									
										
										
										
											2009-08-11 17:28:56 +00:00
										 |  |  |         uint8_t buf[ID3v2_HEADER_SIZE]; | 
					
						
							|  |  |  |         if (url_fseek(s->pb, pos, SEEK_SET) < 0) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         ret = get_buffer(s->pb, buf, ID3v2_HEADER_SIZE); | 
					
						
							|  |  |  |         if (ret != ID3v2_HEADER_SIZE || !ff_id3v2_match(buf)) { | 
					
						
							| 
									
										
										
										
											2007-01-01 05:29:53 +00:00
										 |  |  |             av_log(s, AV_LOG_ERROR, "Not a Musepack file\n"); | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         /* skip ID3 tags and try again */ | 
					
						
							| 
									
										
										
										
											2009-08-11 17:28:56 +00:00
										 |  |  |         t = ff_id3v2_tag_len(buf) - ID3v2_HEADER_SIZE; | 
					
						
							| 
									
										
										
										
											2007-01-01 05:29:53 +00:00
										 |  |  |         av_log(s, AV_LOG_DEBUG, "Skipping %d(%X) bytes of ID3 data\n", t, t); | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |         url_fskip(s->pb, t); | 
					
						
							|  |  |  |         if(get_le24(s->pb) != MKTAG('M', 'P', '+', 0)){ | 
					
						
							| 
									
										
										
										
											2007-01-01 05:29:53 +00:00
										 |  |  |             av_log(s, AV_LOG_ERROR, "Not a Musepack file\n"); | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-08-11 17:28:56 +00:00
										 |  |  |         /* read ID3 tags */ | 
					
						
							|  |  |  |         if (url_fseek(s->pb, pos, SEEK_SET) < 0) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         ff_id3v2_read(s); | 
					
						
							|  |  |  |         get_le24(s->pb); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     c->ver = get_byte(s->pb); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     if(c->ver != 0x07 && c->ver != 0x17){ | 
					
						
							|  |  |  |         av_log(s, AV_LOG_ERROR, "Can demux Musepack SV7, got version %02X\n", c->ver); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     c->fcount = get_le32(s->pb); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     if((int64_t)c->fcount * sizeof(MPCFrame) >= UINT_MAX){ | 
					
						
							|  |  |  |         av_log(s, AV_LOG_ERROR, "Too many frames, seeking is not possible\n"); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     c->frames = av_malloc(c->fcount * sizeof(MPCFrame)); | 
					
						
							|  |  |  |     c->curframe = 0; | 
					
						
							|  |  |  |     c->lastframe = -1; | 
					
						
							|  |  |  |     c->curbits = 8; | 
					
						
							| 
									
										
										
										
											2006-12-28 05:33:31 +00:00
										 |  |  |     c->frames_noted = 0; | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     st = av_new_stream(s, 0); | 
					
						
							|  |  |  |     if (!st) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:21:30 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     st->codec->codec_type = CODEC_TYPE_AUDIO; | 
					
						
							|  |  |  |     st->codec->codec_id = CODEC_ID_MUSEPACK7; | 
					
						
							|  |  |  |     st->codec->channels = 2; | 
					
						
							| 
									
										
										
										
											2008-09-08 14:24:59 +00:00
										 |  |  |     st->codec->bits_per_coded_sample = 16; | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     st->codec->extradata_size = 16; | 
					
						
							|  |  |  |     st->codec->extradata = av_mallocz(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE); | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     get_buffer(s->pb, st->codec->extradata, 16); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     st->codec->sample_rate = mpc_rate[st->codec->extradata[2] & 3]; | 
					
						
							|  |  |  |     av_set_pts_info(st, 32, MPC_FRAMESIZE, st->codec->sample_rate); | 
					
						
							|  |  |  |     /* scan for seekpoints */ | 
					
						
							| 
									
										
										
										
											2010-01-21 09:47:02 +00:00
										 |  |  |     st->start_time = 0; | 
					
						
							|  |  |  |     st->duration = c->fcount; | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-11 17:18:10 +00:00
										 |  |  |     /* try to read APE tags */ | 
					
						
							|  |  |  |     if (!url_is_streamed(s->pb)) { | 
					
						
							|  |  |  |         int64_t pos = url_ftell(s->pb); | 
					
						
							|  |  |  |         ff_ape_parse_tag(s); | 
					
						
							|  |  |  |         url_fseek(s->pb, pos, SEEK_SET); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mpc_read_packet(AVFormatContext *s, AVPacket *pkt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     MPCContext *c = s->priv_data; | 
					
						
							|  |  |  |     int ret, size, size2, curbits, cur = c->curframe; | 
					
						
							|  |  |  |     int64_t tmp, pos; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-14 16:10:05 +00:00
										 |  |  |     if (c->curframe >= c->fcount) | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if(c->curframe != c->lastframe + 1){ | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |         url_fseek(s->pb, c->frames[c->curframe].pos, SEEK_SET); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |         c->curbits = c->frames[c->curframe].skip; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     c->lastframe = c->curframe; | 
					
						
							|  |  |  |     c->curframe++; | 
					
						
							|  |  |  |     curbits = c->curbits; | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     pos = url_ftell(s->pb); | 
					
						
							|  |  |  |     tmp = get_le32(s->pb); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     if(curbits <= 12){ | 
					
						
							|  |  |  |         size2 = (tmp >> (12 - curbits)) & 0xFFFFF; | 
					
						
							|  |  |  |     }else{ | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |         tmp = (tmp << 32) | get_le32(s->pb); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |         size2 = (tmp >> (44 - curbits)) & 0xFFFFF; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     curbits += 20; | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     url_fseek(s->pb, pos, SEEK_SET); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     size = ((size2 + curbits + 31) & ~31) >> 3; | 
					
						
							|  |  |  |     if(cur == c->frames_noted){ | 
					
						
							|  |  |  |         c->frames[cur].pos = pos; | 
					
						
							|  |  |  |         c->frames[cur].size = size; | 
					
						
							|  |  |  |         c->frames[cur].skip = curbits - 20; | 
					
						
							|  |  |  |         av_add_index_entry(s->streams[0], cur, cur, size, 0, AVINDEX_KEYFRAME); | 
					
						
							|  |  |  |         c->frames_noted++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     c->curbits = (curbits + size2) & 0x1F; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (av_new_packet(pkt, size) < 0) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |         return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     pkt->data[0] = curbits; | 
					
						
							|  |  |  |     pkt->data[1] = (c->curframe > c->fcount); | 
					
						
							| 
									
										
										
										
											2010-02-20 11:22:47 +00:00
										 |  |  |     pkt->data[2] = 0; | 
					
						
							|  |  |  |     pkt->data[3] = 0; | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     pkt->stream_index = 0; | 
					
						
							| 
									
										
										
										
											2007-01-01 05:32:27 +00:00
										 |  |  |     pkt->pts = cur; | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     ret = get_buffer(s->pb, pkt->data + 4, size); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     if(c->curbits) | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |         url_fseek(s->pb, -4, SEEK_CUR); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     if(ret < size){ | 
					
						
							|  |  |  |         av_free_packet(pkt); | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |         return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     pkt->size = ret + 4; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mpc_read_close(AVFormatContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     MPCContext *c = s->priv_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     av_freep(&c->frames); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-28 05:33:31 +00:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Seek to the given position | 
					
						
							|  |  |  |  * If position is unknown but is within the limits of file | 
					
						
							|  |  |  |  * then packets are skipped unless desired position is reached | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Also this function makes use of the fact that timestamp == frameno | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | static int mpc_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AVStream *st = s->streams[stream_index]; | 
					
						
							|  |  |  |     MPCContext *c = s->priv_data; | 
					
						
							| 
									
										
										
										
											2006-12-28 05:33:31 +00:00
										 |  |  |     AVPacket pkt1, *pkt = &pkt1; | 
					
						
							|  |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2007-01-01 05:32:27 +00:00
										 |  |  |     int index = av_index_search_timestamp(st, timestamp - DELAY_FRAMES, flags); | 
					
						
							| 
									
										
										
										
											2006-12-28 05:33:31 +00:00
										 |  |  |     uint32_t lastframe; | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-28 05:33:31 +00:00
										 |  |  |     /* if found, seek there */ | 
					
						
							|  |  |  |     if (index >= 0){ | 
					
						
							|  |  |  |         c->curframe = st->index_entries[index].pos; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* if timestamp is out of bounds, return error */ | 
					
						
							|  |  |  |     if(timestamp < 0 || timestamp >= c->fcount) | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2007-01-01 05:32:27 +00:00
										 |  |  |     timestamp -= DELAY_FRAMES; | 
					
						
							| 
									
										
										
										
											2006-12-28 05:33:31 +00:00
										 |  |  |     /* seek to the furthest known position and read packets until
 | 
					
						
							|  |  |  |        we reach desired position */ | 
					
						
							|  |  |  |     lastframe = c->curframe; | 
					
						
							|  |  |  |     if(c->frames_noted) c->curframe = c->frames_noted - 1; | 
					
						
							|  |  |  |     while(c->curframe < timestamp){ | 
					
						
							|  |  |  |         ret = av_read_frame(s, pkt); | 
					
						
							|  |  |  |         if (ret < 0){ | 
					
						
							|  |  |  |             c->curframe = lastframe; | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         av_free_packet(pkt); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AVInputFormat mpc_demuxer = { | 
					
						
							|  |  |  |     "mpc", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("Musepack"), | 
					
						
							| 
									
										
										
										
											2006-12-24 04:51:43 +00:00
										 |  |  |     sizeof(MPCContext), | 
					
						
							|  |  |  |     mpc_probe, | 
					
						
							|  |  |  |     mpc_read_header, | 
					
						
							|  |  |  |     mpc_read_packet, | 
					
						
							|  |  |  |     mpc_read_close, | 
					
						
							|  |  |  |     mpc_read_seek, | 
					
						
							|  |  |  |     .extensions = "mpc", | 
					
						
							|  |  |  | }; |