diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-01-01 05:29:53 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-01-01 05:29:53 +0000 |
commit | 0587b0cacde5d65f0edd9e5e4509fbdb21dfe37f (patch) | |
tree | d781564392b43a34638e583f5c9248218f98701d /libavformat/mpc.c | |
parent | c57d34693b48ad328a7a82d4930616873e643597 (diff) | |
download | ffmpeg-0587b0cacde5d65f0edd9e5e4509fbdb21dfe37f.tar.gz |
Make MPC demuxer deal with ID3 tags at the beginning
Originally committed as revision 7392 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpc.c')
-rw-r--r-- | libavformat/mpc.c | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/libavformat/mpc.c b/libavformat/mpc.c index 1c941d8159..f06cba7629 100644 --- a/libavformat/mpc.c +++ b/libavformat/mpc.c @@ -45,6 +45,8 @@ static int mpc_probe(AVProbeData *p) return 0; if (d[0] == 'M' && d[1] == 'P' && d[2] == '+' && (d[3] == 0x17 || d[3] == 0x7)) return AVPROBE_SCORE_MAX; + if (d[0] == 'I' && d[1] == 'D' && d[2] == '3') + return AVPROBE_SCORE_MAX / 2; return 0; } @@ -52,10 +54,26 @@ static int mpc_read_header(AVFormatContext *s, AVFormatParameters *ap) { MPCContext *c = s->priv_data; AVStream *st; + int t; - if(get_le24(&s->pb) != MKTAG('M', 'P', '+', 0)){ - av_log(s, AV_LOG_ERROR, "Not a Musepack file\n"); - return -1; + t = get_le24(&s->pb); + if(t != MKTAG('M', 'P', '+', 0)){ + if(t != MKTAG('I', 'D', '3', 0)){ + av_log(s, AV_LOG_ERROR, "Not a Musepack file\n"); + return -1; + } + /* skip ID3 tags and try again */ + url_fskip(&s->pb, 3); + t = get_byte(&s->pb) << 21; + t |= get_byte(&s->pb) << 14; + t |= get_byte(&s->pb) << 7; + t |= get_byte(&s->pb); + av_log(s, AV_LOG_DEBUG, "Skipping %d(%X) bytes of ID3 data\n", t, t); + url_fskip(&s->pb, t); + if(get_le24(&s->pb) != MKTAG('M', 'P', '+', 0)){ + av_log(s, AV_LOG_ERROR, "Not a Musepack file\n"); + return -1; + } } c->ver = get_byte(&s->pb); if(c->ver != 0x07 && c->ver != 0x17){ |