2001-07-22 14:18:56 +00:00
|
|
|
/*
|
2007-05-30 09:44:16 +00:00
|
|
|
* "Real" compatible demuxer.
|
2002-05-25 22:34:32 +00:00
|
|
|
* Copyright (c) 2000, 2001 Fabrice Bellard.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-05-25 22:34:32 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2001-07-22 14:18:56 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-25 22:34:32 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2002-05-25 22:34:32 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-07-22 14:18:56 +00:00
|
|
|
*/
|
2008-05-09 11:56:36 +00:00
|
|
|
|
|
|
|
#include "libavutil/avstring.h"
|
2001-07-22 14:18:56 +00:00
|
|
|
#include "avformat.h"
|
2007-05-30 09:44:16 +00:00
|
|
|
#include "rm.h"
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2007-07-28 18:05:11 +00:00
|
|
|
static inline void get_strl(ByteIOContext *pb, char *buf, int buf_size, int len)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
2007-07-28 18:05:11 +00:00
|
|
|
int i;
|
2007-07-28 18:02:19 +00:00
|
|
|
char *q, r;
|
2001-07-22 14:18:56 +00:00
|
|
|
|
|
|
|
q = buf;
|
|
|
|
for(i=0;i<len;i++) {
|
2007-07-28 18:02:19 +00:00
|
|
|
r = get_byte(pb);
|
2001-07-22 14:18:56 +00:00
|
|
|
if (i < buf_size - 1)
|
2007-07-28 18:02:19 +00:00
|
|
|
*q++ = r;
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
2007-07-28 18:02:19 +00:00
|
|
|
if (buf_size > 0) *q = '\0';
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2007-07-28 18:05:11 +00:00
|
|
|
static void get_str16(ByteIOContext *pb, char *buf, int buf_size)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
2007-07-28 18:05:11 +00:00
|
|
|
get_strl(pb, buf, buf_size, get_be16(pb));
|
|
|
|
}
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2007-07-28 18:05:11 +00:00
|
|
|
static void get_str8(ByteIOContext *pb, char *buf, int buf_size)
|
|
|
|
{
|
|
|
|
get_strl(pb, buf, buf_size, get_byte(pb));
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2006-06-04 21:01:02 +00:00
|
|
|
static int rm_read_audio_stream_info(AVFormatContext *s, AVStream *st,
|
2003-08-11 16:16:49 +00:00
|
|
|
int read_all)
|
|
|
|
{
|
2005-12-09 16:08:18 +00:00
|
|
|
RMContext *rm = s->priv_data;
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2005-12-19 20:49:00 +00:00
|
|
|
char buf[256];
|
2003-08-11 16:16:49 +00:00
|
|
|
uint32_t version;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* ra type header */
|
|
|
|
version = get_be32(pb); /* version */
|
|
|
|
if (((version >> 16) & 0xff) == 3) {
|
2005-12-19 20:49:00 +00:00
|
|
|
int64_t startpos = url_ftell(pb);
|
2003-08-11 16:16:49 +00:00
|
|
|
/* very old version */
|
|
|
|
for(i = 0; i < 14; i++)
|
|
|
|
get_byte(pb);
|
|
|
|
get_str8(pb, s->title, sizeof(s->title));
|
|
|
|
get_str8(pb, s->author, sizeof(s->author));
|
|
|
|
get_str8(pb, s->copyright, sizeof(s->copyright));
|
|
|
|
get_str8(pb, s->comment, sizeof(s->comment));
|
2005-12-19 20:49:00 +00:00
|
|
|
if ((startpos + (version & 0xffff)) >= url_ftell(pb) + 2) {
|
|
|
|
// fourcc (should always be "lpcJ")
|
2003-08-11 16:16:49 +00:00
|
|
|
get_byte(pb);
|
|
|
|
get_str8(pb, buf, sizeof(buf));
|
2005-12-19 20:49:00 +00:00
|
|
|
}
|
|
|
|
// Skip extra header crap (this should never happen)
|
|
|
|
if ((startpos + (version & 0xffff)) > url_ftell(pb))
|
|
|
|
url_fskip(pb, (version & 0xffff) + startpos - url_ftell(pb));
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->sample_rate = 8000;
|
|
|
|
st->codec->channels = 1;
|
|
|
|
st->codec->codec_type = CODEC_TYPE_AUDIO;
|
|
|
|
st->codec->codec_id = CODEC_ID_RA_144;
|
2003-08-11 16:16:49 +00:00
|
|
|
} else {
|
2005-12-09 16:08:18 +00:00
|
|
|
int flavor, sub_packet_h, coded_framesize, sub_packet_size;
|
2003-08-11 16:16:49 +00:00
|
|
|
/* old version (4) */
|
|
|
|
get_be32(pb); /* .ra4 */
|
2005-02-28 02:51:53 +00:00
|
|
|
get_be32(pb); /* data size */
|
|
|
|
get_be16(pb); /* version2 */
|
2003-08-11 16:16:49 +00:00
|
|
|
get_be32(pb); /* header size */
|
2005-02-28 02:51:53 +00:00
|
|
|
flavor= get_be16(pb); /* add codec info / flavor */
|
2005-12-09 16:08:18 +00:00
|
|
|
rm->coded_framesize = coded_framesize = get_be32(pb); /* coded frame size */
|
2003-08-11 16:16:49 +00:00
|
|
|
get_be32(pb); /* ??? */
|
|
|
|
get_be32(pb); /* ??? */
|
|
|
|
get_be32(pb); /* ??? */
|
2005-12-17 18:14:38 +00:00
|
|
|
rm->sub_packet_h = sub_packet_h = get_be16(pb); /* 1 */
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->block_align= get_be16(pb); /* frame size */
|
2005-12-09 16:08:18 +00:00
|
|
|
rm->sub_packet_size = sub_packet_size = get_be16(pb); /* sub packet size */
|
2005-02-28 02:51:53 +00:00
|
|
|
get_be16(pb); /* ??? */
|
2005-12-09 16:08:18 +00:00
|
|
|
if (((version >> 16) & 0xff) == 5) {
|
|
|
|
get_be16(pb); get_be16(pb); get_be16(pb); }
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->sample_rate = get_be16(pb);
|
2003-08-11 16:16:49 +00:00
|
|
|
get_be32(pb);
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->channels = get_be16(pb);
|
2005-12-09 16:08:18 +00:00
|
|
|
if (((version >> 16) & 0xff) == 5) {
|
|
|
|
get_be32(pb);
|
2005-12-22 01:10:11 +00:00
|
|
|
buf[0] = get_byte(pb);
|
|
|
|
buf[1] = get_byte(pb);
|
|
|
|
buf[2] = get_byte(pb);
|
|
|
|
buf[3] = get_byte(pb);
|
|
|
|
buf[4] = 0;
|
|
|
|
} else {
|
2006-11-01 21:09:14 +00:00
|
|
|
get_str8(pb, buf, sizeof(buf)); /* desc */
|
|
|
|
get_str8(pb, buf, sizeof(buf)); /* desc */
|
2005-12-22 01:10:11 +00:00
|
|
|
}
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->codec_type = CODEC_TYPE_AUDIO;
|
2003-08-11 16:16:49 +00:00
|
|
|
if (!strcmp(buf, "dnet")) {
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->codec_id = CODEC_ID_AC3;
|
2007-10-01 19:48:02 +00:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2005-02-28 02:51:53 +00:00
|
|
|
} else if (!strcmp(buf, "28_8")) {
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->codec_id = CODEC_ID_RA_288;
|
2005-12-09 16:08:18 +00:00
|
|
|
st->codec->extradata_size= 0;
|
|
|
|
rm->audio_framesize = st->codec->block_align;
|
|
|
|
st->codec->block_align = coded_framesize;
|
2006-05-13 11:37:56 +00:00
|
|
|
|
|
|
|
if(rm->audio_framesize >= UINT_MAX / sub_packet_h){
|
|
|
|
av_log(s, AV_LOG_ERROR, "rm->audio_framesize * sub_packet_h too large\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-12-09 16:08:18 +00:00
|
|
|
rm->audiobuf = av_malloc(rm->audio_framesize * sub_packet_h);
|
2007-04-17 20:53:39 +00:00
|
|
|
} else if ((!strcmp(buf, "cook")) || (!strcmp(buf, "atrc"))) {
|
2005-12-09 16:08:18 +00:00
|
|
|
int codecdata_length, i;
|
|
|
|
get_be16(pb); get_byte(pb);
|
|
|
|
if (((version >> 16) & 0xff) == 5)
|
|
|
|
get_byte(pb);
|
|
|
|
codecdata_length = get_be32(pb);
|
2006-05-13 11:37:56 +00:00
|
|
|
if(codecdata_length + FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)codecdata_length){
|
|
|
|
av_log(s, AV_LOG_ERROR, "codecdata_length too large\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-04-17 20:53:39 +00:00
|
|
|
if (!strcmp(buf, "cook")) st->codec->codec_id = CODEC_ID_COOK;
|
|
|
|
else st->codec->codec_id = CODEC_ID_ATRAC3;
|
2005-12-09 16:08:18 +00:00
|
|
|
st->codec->extradata_size= codecdata_length;
|
2005-12-17 17:57:03 +00:00
|
|
|
st->codec->extradata= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
|
2005-12-09 16:08:18 +00:00
|
|
|
for(i = 0; i < codecdata_length; i++)
|
|
|
|
((uint8_t*)st->codec->extradata)[i] = get_byte(pb);
|
|
|
|
rm->audio_framesize = st->codec->block_align;
|
|
|
|
st->codec->block_align = rm->sub_packet_size;
|
2006-05-13 11:37:56 +00:00
|
|
|
|
|
|
|
if(rm->audio_framesize >= UINT_MAX / sub_packet_h){
|
|
|
|
av_log(s, AV_LOG_ERROR, "rm->audio_framesize * sub_packet_h too large\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-12-09 16:08:18 +00:00
|
|
|
rm->audiobuf = av_malloc(rm->audio_framesize * sub_packet_h);
|
2006-06-04 17:26:58 +00:00
|
|
|
} else if (!strcmp(buf, "raac") || !strcmp(buf, "racp")) {
|
|
|
|
int codecdata_length, i;
|
|
|
|
get_be16(pb); get_byte(pb);
|
|
|
|
if (((version >> 16) & 0xff) == 5)
|
|
|
|
get_byte(pb);
|
|
|
|
st->codec->codec_id = CODEC_ID_AAC;
|
|
|
|
codecdata_length = get_be32(pb);
|
2006-06-04 21:01:02 +00:00
|
|
|
if(codecdata_length + FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)codecdata_length){
|
|
|
|
av_log(s, AV_LOG_ERROR, "codecdata_length too large\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2006-06-04 17:26:58 +00:00
|
|
|
if (codecdata_length >= 1) {
|
|
|
|
st->codec->extradata_size = codecdata_length - 1;
|
|
|
|
st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
|
|
|
|
get_byte(pb);
|
|
|
|
for(i = 0; i < st->codec->extradata_size; i++)
|
|
|
|
((uint8_t*)st->codec->extradata)[i] = get_byte(pb);
|
|
|
|
}
|
2003-08-11 16:16:49 +00:00
|
|
|
} else {
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->codec_id = CODEC_ID_NONE;
|
2007-06-23 23:10:32 +00:00
|
|
|
av_strlcpy(st->codec->codec_name, buf, sizeof(st->codec->codec_name));
|
2003-08-11 16:16:49 +00:00
|
|
|
}
|
|
|
|
if (read_all) {
|
|
|
|
get_byte(pb);
|
|
|
|
get_byte(pb);
|
|
|
|
get_byte(pb);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-08-11 16:16:49 +00:00
|
|
|
get_str8(pb, s->title, sizeof(s->title));
|
|
|
|
get_str8(pb, s->author, sizeof(s->author));
|
|
|
|
get_str8(pb, s->copyright, sizeof(s->copyright));
|
|
|
|
get_str8(pb, s->comment, sizeof(s->comment));
|
|
|
|
}
|
|
|
|
}
|
2006-06-04 21:01:02 +00:00
|
|
|
return 0;
|
2003-08-11 16:16:49 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 13:00:47 +00:00
|
|
|
int
|
2007-11-06 16:02:33 +00:00
|
|
|
ff_rm_read_mdpr_codecdata (AVFormatContext *s, AVStream *st)
|
|
|
|
{
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2007-11-06 16:02:33 +00:00
|
|
|
unsigned int v;
|
2007-11-08 09:14:09 +00:00
|
|
|
int codec_data_size, size;
|
2007-11-06 16:02:33 +00:00
|
|
|
int64_t codec_pos;
|
|
|
|
|
|
|
|
codec_data_size = get_be32(pb);
|
|
|
|
codec_pos = url_ftell(pb);
|
|
|
|
v = get_be32(pb);
|
|
|
|
if (v == MKTAG(0xfd, 'a', 'r', '.')) {
|
|
|
|
/* ra type header */
|
|
|
|
if (rm_read_audio_stream_info(s, st, 0))
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
int fps, fps2;
|
|
|
|
if (get_le32(pb) != MKTAG('V', 'I', 'D', 'O')) {
|
|
|
|
fail1:
|
|
|
|
av_log(st->codec, AV_LOG_ERROR, "Unsupported video codec\n");
|
|
|
|
goto skip;
|
|
|
|
}
|
|
|
|
st->codec->codec_tag = get_le32(pb);
|
|
|
|
// av_log(NULL, AV_LOG_DEBUG, "%X %X\n", st->codec->codec_tag, MKTAG('R', 'V', '2', '0'));
|
|
|
|
if ( st->codec->codec_tag != MKTAG('R', 'V', '1', '0')
|
|
|
|
&& st->codec->codec_tag != MKTAG('R', 'V', '2', '0')
|
|
|
|
&& st->codec->codec_tag != MKTAG('R', 'V', '3', '0')
|
|
|
|
&& st->codec->codec_tag != MKTAG('R', 'V', '4', '0'))
|
|
|
|
goto fail1;
|
|
|
|
st->codec->width = get_be16(pb);
|
|
|
|
st->codec->height = get_be16(pb);
|
|
|
|
st->codec->time_base.num= 1;
|
|
|
|
fps= get_be16(pb);
|
|
|
|
st->codec->codec_type = CODEC_TYPE_VIDEO;
|
|
|
|
get_be32(pb);
|
|
|
|
fps2= get_be16(pb);
|
|
|
|
get_be16(pb);
|
|
|
|
|
|
|
|
st->codec->extradata_size= codec_data_size - (url_ftell(pb) - codec_pos);
|
|
|
|
|
|
|
|
if(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)st->codec->extradata_size){
|
|
|
|
//check is redundant as get_buffer() will catch this
|
|
|
|
av_log(s, AV_LOG_ERROR, "st->codec->extradata_size too large\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
st->codec->extradata= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
|
2008-06-01 16:25:05 +00:00
|
|
|
if (!st->codec->extradata)
|
|
|
|
return AVERROR(ENOMEM);
|
2007-11-06 16:02:33 +00:00
|
|
|
get_buffer(pb, st->codec->extradata, st->codec->extradata_size);
|
|
|
|
|
|
|
|
// av_log(NULL, AV_LOG_DEBUG, "fps= %d fps2= %d\n", fps, fps2);
|
|
|
|
st->codec->time_base.den = fps * st->codec->time_base.num;
|
|
|
|
switch(((uint8_t*)st->codec->extradata)[4]>>4){
|
|
|
|
case 1: st->codec->codec_id = CODEC_ID_RV10; break;
|
|
|
|
case 2: st->codec->codec_id = CODEC_ID_RV20; break;
|
|
|
|
case 3: st->codec->codec_id = CODEC_ID_RV30; break;
|
|
|
|
case 4: st->codec->codec_id = CODEC_ID_RV40; break;
|
|
|
|
default: goto fail1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
skip:
|
|
|
|
/* skip codec info */
|
|
|
|
size = url_ftell(pb) - codec_pos;
|
|
|
|
url_fskip(pb, codec_data_size - size);
|
|
|
|
|
2007-11-08 09:14:09 +00:00
|
|
|
return 0;
|
2007-11-06 16:02:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-11 16:16:49 +00:00
|
|
|
static int rm_read_header_old(AVFormatContext *s, AVFormatParameters *ap)
|
|
|
|
{
|
|
|
|
RMContext *rm = s->priv_data;
|
|
|
|
AVStream *st;
|
|
|
|
|
|
|
|
rm->old_format = 1;
|
|
|
|
st = av_new_stream(s, 0);
|
|
|
|
if (!st)
|
2006-06-04 21:01:02 +00:00
|
|
|
return -1;
|
|
|
|
return rm_read_audio_stream_info(s, st, 1);
|
2003-08-11 16:16:49 +00:00
|
|
|
}
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
|
|
|
{
|
2002-05-20 16:31:13 +00:00
|
|
|
RMContext *rm = s->priv_data;
|
2001-07-22 14:18:56 +00:00
|
|
|
AVStream *st;
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2007-11-06 16:02:33 +00:00
|
|
|
unsigned int tag;
|
2008-06-23 08:52:44 +00:00
|
|
|
int tag_size;
|
2006-10-03 17:12:48 +00:00
|
|
|
unsigned int start_time, duration;
|
2001-07-22 14:18:56 +00:00
|
|
|
char buf[128];
|
2002-05-09 01:20:53 +00:00
|
|
|
int flags = 0;
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2003-08-11 16:16:49 +00:00
|
|
|
tag = get_le32(pb);
|
|
|
|
if (tag == MKTAG('.', 'r', 'a', 0xfd)) {
|
|
|
|
/* very old .ra format */
|
|
|
|
return rm_read_header_old(s, ap);
|
|
|
|
} else if (tag != MKTAG('.', 'R', 'M', 'F')) {
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2003-08-11 16:16:49 +00:00
|
|
|
}
|
2001-07-22 14:18:56 +00:00
|
|
|
|
|
|
|
get_be32(pb); /* header size */
|
|
|
|
get_be16(pb);
|
|
|
|
get_be32(pb);
|
|
|
|
get_be32(pb); /* number of headers */
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
for(;;) {
|
|
|
|
if (url_feof(pb))
|
2008-06-20 17:16:56 +00:00
|
|
|
return -1;
|
2001-07-22 14:18:56 +00:00
|
|
|
tag = get_le32(pb);
|
|
|
|
tag_size = get_be32(pb);
|
|
|
|
get_be16(pb);
|
|
|
|
#if 0
|
2005-12-17 18:14:38 +00:00
|
|
|
printf("tag=%c%c%c%c (%08x) size=%d\n",
|
2001-07-22 14:18:56 +00:00
|
|
|
(tag) & 0xff,
|
|
|
|
(tag >> 8) & 0xff,
|
|
|
|
(tag >> 16) & 0xff,
|
|
|
|
(tag >> 24) & 0xff,
|
|
|
|
tag,
|
|
|
|
tag_size);
|
|
|
|
#endif
|
2005-04-24 22:08:31 +00:00
|
|
|
if (tag_size < 10 && tag != MKTAG('D', 'A', 'T', 'A'))
|
2008-06-20 17:16:56 +00:00
|
|
|
return -1;
|
2001-07-22 14:18:56 +00:00
|
|
|
switch(tag) {
|
|
|
|
case MKTAG('P', 'R', 'O', 'P'):
|
|
|
|
/* file header */
|
|
|
|
get_be32(pb); /* max bit rate */
|
|
|
|
get_be32(pb); /* avg bit rate */
|
|
|
|
get_be32(pb); /* max packet size */
|
|
|
|
get_be32(pb); /* avg packet size */
|
|
|
|
get_be32(pb); /* nb packets */
|
|
|
|
get_be32(pb); /* duration */
|
|
|
|
get_be32(pb); /* preroll */
|
|
|
|
get_be32(pb); /* index offset */
|
|
|
|
get_be32(pb); /* data offset */
|
|
|
|
get_be16(pb); /* nb streams */
|
2002-05-09 01:20:53 +00:00
|
|
|
flags = get_be16(pb); /* flags */
|
2001-07-22 14:18:56 +00:00
|
|
|
break;
|
|
|
|
case MKTAG('C', 'O', 'N', 'T'):
|
2007-07-28 18:05:11 +00:00
|
|
|
get_str16(pb, s->title, sizeof(s->title));
|
|
|
|
get_str16(pb, s->author, sizeof(s->author));
|
|
|
|
get_str16(pb, s->copyright, sizeof(s->copyright));
|
|
|
|
get_str16(pb, s->comment, sizeof(s->comment));
|
2001-07-22 14:18:56 +00:00
|
|
|
break;
|
|
|
|
case MKTAG('M', 'D', 'P', 'R'):
|
2003-08-08 17:52:53 +00:00
|
|
|
st = av_new_stream(s, 0);
|
2001-07-22 14:18:56 +00:00
|
|
|
if (!st)
|
2008-06-20 17:16:56 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2001-07-22 14:18:56 +00:00
|
|
|
st->id = get_be16(pb);
|
|
|
|
get_be32(pb); /* max bit rate */
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->bit_rate = get_be32(pb); /* bit rate */
|
2001-07-22 14:18:56 +00:00
|
|
|
get_be32(pb); /* max packet size */
|
|
|
|
get_be32(pb); /* avg packet size */
|
2003-08-08 17:52:53 +00:00
|
|
|
start_time = get_be32(pb); /* start time */
|
2001-07-22 14:18:56 +00:00
|
|
|
get_be32(pb); /* preroll */
|
2003-08-08 17:52:53 +00:00
|
|
|
duration = get_be32(pb); /* duration */
|
2005-04-30 21:43:59 +00:00
|
|
|
st->start_time = start_time;
|
|
|
|
st->duration = duration;
|
2001-07-22 14:18:56 +00:00
|
|
|
get_str8(pb, buf, sizeof(buf)); /* desc */
|
|
|
|
get_str8(pb, buf, sizeof(buf)); /* mimetype */
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->codec_type = CODEC_TYPE_DATA;
|
2004-12-06 16:40:10 +00:00
|
|
|
av_set_pts_info(st, 64, 1, 1000);
|
2007-11-06 16:02:33 +00:00
|
|
|
if (ff_rm_read_mdpr_codecdata(s, st) < 0)
|
|
|
|
return -1;
|
2001-07-22 14:18:56 +00:00
|
|
|
break;
|
|
|
|
case MKTAG('D', 'A', 'T', 'A'):
|
|
|
|
goto header_end;
|
|
|
|
default:
|
|
|
|
/* unknown tag: skip it */
|
|
|
|
url_fskip(pb, tag_size - 10);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
header_end:
|
|
|
|
rm->nb_packets = get_be32(pb); /* number of packets */
|
2002-05-09 01:20:53 +00:00
|
|
|
if (!rm->nb_packets && (flags & 4))
|
|
|
|
rm->nb_packets = 3600 * 25;
|
2001-07-22 14:18:56 +00:00
|
|
|
get_be32(pb); /* next data header */
|
2007-10-21 17:17:28 +00:00
|
|
|
rm->curpic_num = -1;
|
2001-07-22 14:18:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-30 21:36:43 +00:00
|
|
|
static int get_num(ByteIOContext *pb, int *len)
|
|
|
|
{
|
|
|
|
int n, n1;
|
|
|
|
|
|
|
|
n = get_be16(pb);
|
|
|
|
(*len)-=2;
|
2007-12-02 17:41:12 +00:00
|
|
|
n &= 0x7FFF;
|
2002-09-30 21:36:43 +00:00
|
|
|
if (n >= 0x4000) {
|
|
|
|
return n - 0x4000;
|
|
|
|
} else {
|
|
|
|
n1 = get_be16(pb);
|
|
|
|
(*len)-=2;
|
|
|
|
return (n << 16) | n1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-11 16:16:49 +00:00
|
|
|
/* multiple of 20 bytes for ra144 (ugly) */
|
|
|
|
#define RAW_PACKET_SIZE 1000
|
|
|
|
|
2004-12-06 23:43:28 +00:00
|
|
|
static int sync(AVFormatContext *s, int64_t *timestamp, int *flags, int *stream_index, int64_t *pos){
|
2004-12-06 22:44:03 +00:00
|
|
|
RMContext *rm = s->priv_data;
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2004-12-06 22:44:03 +00:00
|
|
|
int len, num, res, i;
|
|
|
|
AVStream *st;
|
2005-01-03 02:52:11 +00:00
|
|
|
uint32_t state=0xFFFFFFFF;
|
2004-12-06 22:44:03 +00:00
|
|
|
|
|
|
|
while(!url_feof(pb)){
|
2008-04-09 23:19:05 +00:00
|
|
|
*pos= url_ftell(pb) - 3;
|
2004-12-06 22:44:03 +00:00
|
|
|
if(rm->remaining_len > 0){
|
|
|
|
num= rm->current_stream;
|
|
|
|
len= rm->remaining_len;
|
|
|
|
*timestamp = AV_NOPTS_VALUE;
|
|
|
|
*flags= 0;
|
|
|
|
}else{
|
2005-01-03 02:52:11 +00:00
|
|
|
state= (state<<8) + get_byte(pb);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-01-03 02:52:11 +00:00
|
|
|
if(state == MKBETAG('I', 'N', 'D', 'X')){
|
|
|
|
len = get_be16(pb) - 6;
|
|
|
|
if(len<0)
|
|
|
|
continue;
|
|
|
|
goto skip;
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-01-03 02:52:11 +00:00
|
|
|
if(state > (unsigned)0xFFFF || state < 12)
|
2004-12-06 22:44:03 +00:00
|
|
|
continue;
|
2005-01-03 02:52:11 +00:00
|
|
|
len=state;
|
|
|
|
state= 0xFFFFFFFF;
|
|
|
|
|
2004-12-06 22:44:03 +00:00
|
|
|
num = get_be16(pb);
|
|
|
|
*timestamp = get_be32(pb);
|
|
|
|
res= get_byte(pb); /* reserved */
|
|
|
|
*flags = get_byte(pb); /* flags */
|
2004-12-06 23:43:28 +00:00
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2004-12-06 22:44:03 +00:00
|
|
|
len -= 12;
|
|
|
|
}
|
|
|
|
for(i=0;i<s->nb_streams;i++) {
|
|
|
|
st = s->streams[i];
|
|
|
|
if (num == st->id)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == s->nb_streams) {
|
2005-01-03 02:52:11 +00:00
|
|
|
skip:
|
2004-12-06 22:44:03 +00:00
|
|
|
/* skip packet if unknown number */
|
|
|
|
url_fskip(pb, len);
|
|
|
|
rm->remaining_len -= len;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*stream_index= i;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2004-12-06 22:44:03 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-10-21 17:17:28 +00:00
|
|
|
static int rm_assemble_video_frame(AVFormatContext *s, RMContext *rm, AVPacket *pkt, int len)
|
|
|
|
{
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2007-10-21 17:17:28 +00:00
|
|
|
int hdr, seq, pic_num, len2, pos;
|
|
|
|
int type;
|
|
|
|
|
|
|
|
hdr = get_byte(pb); len--;
|
|
|
|
type = hdr >> 6;
|
|
|
|
switch(type){
|
|
|
|
case 0: // slice
|
|
|
|
case 2: // last slice
|
|
|
|
seq = get_byte(pb); len--;
|
|
|
|
len2 = get_num(pb, &len);
|
|
|
|
pos = get_num(pb, &len);
|
|
|
|
pic_num = get_byte(pb); len--;
|
|
|
|
rm->remaining_len = len;
|
|
|
|
break;
|
|
|
|
case 1: //whole frame
|
|
|
|
seq = get_byte(pb); len--;
|
|
|
|
if(av_new_packet(pkt, len + 9) < 0)
|
|
|
|
return AVERROR(EIO);
|
|
|
|
pkt->data[0] = 0;
|
|
|
|
AV_WL32(pkt->data + 1, 1);
|
|
|
|
AV_WL32(pkt->data + 5, 0);
|
|
|
|
get_buffer(pb, pkt->data + 9, len);
|
|
|
|
rm->remaining_len = 0;
|
|
|
|
return 0;
|
|
|
|
case 3: //frame as a part of packet
|
|
|
|
len2 = get_num(pb, &len);
|
|
|
|
pos = get_num(pb, &len);
|
|
|
|
pic_num = get_byte(pb); len--;
|
|
|
|
rm->remaining_len = len - len2;
|
|
|
|
if(av_new_packet(pkt, len2 + 9) < 0)
|
|
|
|
return AVERROR(EIO);
|
|
|
|
pkt->data[0] = 0;
|
|
|
|
AV_WL32(pkt->data + 1, 1);
|
|
|
|
AV_WL32(pkt->data + 5, 0);
|
|
|
|
get_buffer(pb, pkt->data + 9, len2);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
//now we have to deal with single slice
|
|
|
|
|
|
|
|
if((seq & 0x7F) == 1 || rm->curpic_num != pic_num){
|
|
|
|
rm->slices = ((hdr & 0x3F) << 1) + 1;
|
2007-11-18 22:58:40 +00:00
|
|
|
rm->videobufsize = len2 + 8*rm->slices + 1;
|
2007-11-19 20:28:11 +00:00
|
|
|
av_free(rm->videobuf);
|
|
|
|
if(!(rm->videobuf = av_malloc(rm->videobufsize)))
|
2007-11-18 22:49:41 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2007-10-21 17:17:28 +00:00
|
|
|
rm->videobufpos = 8*rm->slices + 1;
|
|
|
|
rm->cur_slice = 0;
|
|
|
|
rm->curpic_num = pic_num;
|
2007-11-03 06:43:29 +00:00
|
|
|
rm->pktpos = url_ftell(pb);
|
2007-10-21 17:17:28 +00:00
|
|
|
}
|
2007-11-19 00:02:58 +00:00
|
|
|
if(type == 2)
|
2007-10-21 17:17:28 +00:00
|
|
|
len = FFMIN(len, pos);
|
|
|
|
|
2007-11-15 21:13:36 +00:00
|
|
|
if(++rm->cur_slice > rm->slices)
|
2007-10-21 17:17:28 +00:00
|
|
|
return 1;
|
|
|
|
AV_WL32(rm->videobuf - 7 + 8*rm->cur_slice, 1);
|
|
|
|
AV_WL32(rm->videobuf - 3 + 8*rm->cur_slice, rm->videobufpos - 8*rm->slices - 1);
|
|
|
|
if(rm->videobufpos + len > rm->videobufsize)
|
|
|
|
return 1;
|
|
|
|
if (get_buffer(pb, rm->videobuf + rm->videobufpos, len) != len)
|
|
|
|
return AVERROR(EIO);
|
2007-12-04 23:43:01 +00:00
|
|
|
rm->videobufpos += len;
|
2007-10-21 17:17:28 +00:00
|
|
|
rm->remaining_len-= len;
|
|
|
|
|
|
|
|
if(type == 2 || (rm->videobufpos) == rm->videobufsize){
|
|
|
|
rm->videobuf[0] = rm->cur_slice-1;
|
2007-11-18 22:40:02 +00:00
|
|
|
if(av_new_packet(pkt, rm->videobufpos - 8*(rm->slices - rm->cur_slice)) < 0)
|
2007-10-21 17:17:28 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2007-11-18 22:40:02 +00:00
|
|
|
memcpy(pkt->data, rm->videobuf, 1 + 8*rm->cur_slice);
|
2007-11-19 00:02:58 +00:00
|
|
|
memcpy(pkt->data + 1 + 8*rm->cur_slice, rm->videobuf + 1 + 8*rm->slices,
|
|
|
|
rm->videobufpos - 1 - 8*rm->slices);
|
2007-11-03 06:43:29 +00:00
|
|
|
pkt->pts = AV_NOPTS_VALUE;
|
|
|
|
pkt->pos = rm->pktpos;
|
2007-10-21 17:17:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2007-11-08 15:52:53 +00:00
|
|
|
static inline void
|
|
|
|
rm_ac3_swap_bytes (AVStream *st, AVPacket *pkt)
|
|
|
|
{
|
|
|
|
uint8_t *ptr;
|
|
|
|
int j;
|
|
|
|
|
|
|
|
if (st->codec->codec_id == CODEC_ID_AC3) {
|
|
|
|
ptr = pkt->data;
|
|
|
|
for (j=0;j<pkt->size;j+=2) {
|
|
|
|
FFSWAP(int, ptr[0], ptr[1]);
|
|
|
|
ptr += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-04 13:00:47 +00:00
|
|
|
int
|
2007-11-08 15:07:34 +00:00
|
|
|
ff_rm_parse_packet (AVFormatContext *s, AVStream *st, int len, AVPacket *pkt,
|
|
|
|
int *seq, int *flags, int64_t *timestamp)
|
|
|
|
{
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2007-11-08 15:07:34 +00:00
|
|
|
RMContext *rm = s->priv_data;
|
|
|
|
|
|
|
|
if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
|
|
|
|
rm->current_stream= st->id;
|
|
|
|
if(rm_assemble_video_frame(s, rm, pkt, len) == 1)
|
|
|
|
return -1; //got partial frame
|
|
|
|
} else if (st->codec->codec_type == CODEC_TYPE_AUDIO) {
|
|
|
|
if ((st->codec->codec_id == CODEC_ID_RA_288) ||
|
|
|
|
(st->codec->codec_id == CODEC_ID_COOK) ||
|
|
|
|
(st->codec->codec_id == CODEC_ID_ATRAC3)) {
|
|
|
|
int x;
|
|
|
|
int sps = rm->sub_packet_size;
|
|
|
|
int cfs = rm->coded_framesize;
|
|
|
|
int h = rm->sub_packet_h;
|
|
|
|
int y = rm->sub_packet_cnt;
|
|
|
|
int w = rm->audio_framesize;
|
|
|
|
|
|
|
|
if (*flags & 2)
|
|
|
|
y = rm->sub_packet_cnt = 0;
|
|
|
|
if (!y)
|
|
|
|
rm->audiotimestamp = *timestamp;
|
|
|
|
|
|
|
|
switch(st->codec->codec_id) {
|
|
|
|
case CODEC_ID_RA_288:
|
|
|
|
for (x = 0; x < h/2; x++)
|
|
|
|
get_buffer(pb, rm->audiobuf+x*2*w+y*cfs, cfs);
|
|
|
|
break;
|
|
|
|
case CODEC_ID_ATRAC3:
|
|
|
|
case CODEC_ID_COOK:
|
|
|
|
for (x = 0; x < w/sps; x++)
|
|
|
|
get_buffer(pb, rm->audiobuf+sps*(h*x+((h+1)/2)*(y&1)+(y>>1)), sps);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (++(rm->sub_packet_cnt) < h)
|
|
|
|
return -1;
|
|
|
|
else {
|
|
|
|
rm->sub_packet_cnt = 0;
|
|
|
|
rm->audio_stream_num = st->index;
|
|
|
|
rm->audio_pkt_cnt = h * w / st->codec->block_align - 1;
|
|
|
|
// Release first audio packet
|
|
|
|
av_new_packet(pkt, st->codec->block_align);
|
|
|
|
memcpy(pkt->data, rm->audiobuf, st->codec->block_align);
|
|
|
|
*timestamp = rm->audiotimestamp;
|
|
|
|
*flags = 2; // Mark first packet as keyframe
|
|
|
|
}
|
|
|
|
} else if (st->codec->codec_id == CODEC_ID_AAC) {
|
|
|
|
int x;
|
|
|
|
rm->audio_stream_num = st->index;
|
|
|
|
rm->sub_packet_cnt = (get_be16(pb) & 0xf0) >> 4;
|
|
|
|
if (rm->sub_packet_cnt) {
|
|
|
|
for (x = 0; x < rm->sub_packet_cnt; x++)
|
|
|
|
rm->sub_packet_lengths[x] = get_be16(pb);
|
|
|
|
// Release first audio packet
|
|
|
|
rm->audio_pkt_cnt = rm->sub_packet_cnt - 1;
|
|
|
|
av_get_packet(pb, pkt, rm->sub_packet_lengths[0]);
|
|
|
|
*flags = 2; // Mark first packet as keyframe
|
|
|
|
}
|
2008-01-17 20:48:07 +00:00
|
|
|
} else {
|
2007-11-08 15:07:34 +00:00
|
|
|
av_get_packet(pb, pkt, len);
|
2007-11-15 21:04:06 +00:00
|
|
|
rm_ac3_swap_bytes(st, pkt);
|
2008-01-17 20:48:07 +00:00
|
|
|
}
|
2007-11-08 15:07:34 +00:00
|
|
|
} else
|
|
|
|
av_get_packet(pb, pkt, len);
|
|
|
|
|
|
|
|
if( (st->discard >= AVDISCARD_NONKEY && !(*flags&2))
|
|
|
|
|| st->discard >= AVDISCARD_ALL){
|
|
|
|
av_free_packet(pkt);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pkt->stream_index = st->index;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
|
|
|
|
if(st->codec->codec_id == CODEC_ID_RV20){
|
|
|
|
int seq= 128*(pkt->data[2]&0x7F) + (pkt->data[3]>>1);
|
|
|
|
av_log(NULL, AV_LOG_DEBUG, "%d %"PRId64" %d\n", *timestamp, *timestamp*512LL/25, seq);
|
|
|
|
|
|
|
|
seq |= (*timestamp&~0x3FFF);
|
|
|
|
if(seq - *timestamp > 0x2000) seq -= 0x4000;
|
|
|
|
if(seq - *timestamp < -0x2000) seq += 0x4000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
pkt->pts= *timestamp;
|
|
|
|
if (*flags & 2)
|
|
|
|
pkt->flags |= PKT_FLAG_KEY;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-04 13:00:47 +00:00
|
|
|
void
|
2007-11-08 15:14:37 +00:00
|
|
|
ff_rm_retrieve_cache (AVFormatContext *s, AVStream *st, AVPacket *pkt)
|
|
|
|
{
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2007-11-08 15:14:37 +00:00
|
|
|
RMContext *rm = s->priv_data;
|
|
|
|
|
|
|
|
assert (rm->audio_pkt_cnt > 0);
|
|
|
|
|
|
|
|
if (st->codec->codec_id == CODEC_ID_AAC)
|
|
|
|
av_get_packet(pb, pkt, rm->sub_packet_lengths[rm->sub_packet_cnt - rm->audio_pkt_cnt]);
|
|
|
|
else {
|
|
|
|
av_new_packet(pkt, st->codec->block_align);
|
|
|
|
memcpy(pkt->data, rm->audiobuf + st->codec->block_align *
|
|
|
|
(rm->sub_packet_h * rm->audio_framesize / st->codec->block_align - rm->audio_pkt_cnt),
|
|
|
|
st->codec->block_align);
|
|
|
|
}
|
|
|
|
rm->audio_pkt_cnt--;
|
|
|
|
pkt->flags = 0;
|
|
|
|
pkt->stream_index = st->index;
|
|
|
|
}
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
static int rm_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|
|
|
{
|
|
|
|
RMContext *rm = s->priv_data;
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2001-07-22 14:18:56 +00:00
|
|
|
AVStream *st;
|
2007-11-08 15:52:53 +00:00
|
|
|
int i, len;
|
2004-12-06 23:43:28 +00:00
|
|
|
int64_t timestamp, pos;
|
2004-12-06 22:44:03 +00:00
|
|
|
int flags;
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2005-12-25 00:48:12 +00:00
|
|
|
if (rm->audio_pkt_cnt) {
|
2005-12-09 16:08:18 +00:00
|
|
|
// If there are queued audio packet return them first
|
|
|
|
st = s->streams[rm->audio_stream_num];
|
2007-11-08 15:14:37 +00:00
|
|
|
ff_rm_retrieve_cache(s, st, pkt);
|
2005-12-25 00:48:12 +00:00
|
|
|
} else if (rm->old_format) {
|
|
|
|
st = s->streams[0];
|
|
|
|
if (st->codec->codec_id == CODEC_ID_RA_288) {
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
for (y = 0; y < rm->sub_packet_h; y++)
|
|
|
|
for (x = 0; x < rm->sub_packet_h/2; x++)
|
|
|
|
if (get_buffer(pb, rm->audiobuf+x*2*rm->audio_framesize+y*rm->coded_framesize, rm->coded_framesize) <= 0)
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2005-12-25 00:48:12 +00:00
|
|
|
rm->audio_stream_num = 0;
|
|
|
|
rm->audio_pkt_cnt = rm->sub_packet_h * rm->audio_framesize / st->codec->block_align - 1;
|
|
|
|
// Release first audio packet
|
|
|
|
av_new_packet(pkt, st->codec->block_align);
|
|
|
|
memcpy(pkt->data, rm->audiobuf, st->codec->block_align);
|
|
|
|
pkt->flags |= PKT_FLAG_KEY; // Mark first packet as keyframe
|
|
|
|
pkt->stream_index = 0;
|
|
|
|
} else {
|
|
|
|
/* just read raw bytes */
|
|
|
|
len = RAW_PACKET_SIZE;
|
|
|
|
len= av_get_packet(pb, pkt, len);
|
|
|
|
pkt->stream_index = 0;
|
|
|
|
if (len <= 0) {
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2005-12-25 00:48:12 +00:00
|
|
|
}
|
|
|
|
pkt->size = len;
|
|
|
|
}
|
2007-11-15 21:04:06 +00:00
|
|
|
rm_ac3_swap_bytes(st, pkt);
|
2003-08-11 16:16:49 +00:00
|
|
|
} else {
|
2004-12-06 23:43:28 +00:00
|
|
|
int seq=1;
|
2005-01-22 13:36:02 +00:00
|
|
|
resync:
|
2004-12-06 23:43:28 +00:00
|
|
|
len=sync(s, ×tamp, &flags, &i, &pos);
|
2004-12-06 22:44:03 +00:00
|
|
|
if(len<0)
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2004-12-06 22:44:03 +00:00
|
|
|
st = s->streams[i];
|
|
|
|
|
2007-11-08 15:07:34 +00:00
|
|
|
if (ff_rm_parse_packet (s, st, len, pkt, &seq, &flags, ×tamp) < 0)
|
2005-01-22 13:36:02 +00:00
|
|
|
goto resync;
|
2004-12-06 16:40:10 +00:00
|
|
|
|
2008-01-16 22:47:51 +00:00
|
|
|
if((flags&2) && (seq&0x7F) == 1)
|
2008-01-02 18:53:38 +00:00
|
|
|
av_add_index_entry(st, pos, timestamp, 0, 0, AVINDEX_KEYFRAME);
|
2002-05-09 01:20:53 +00:00
|
|
|
}
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rm_read_close(AVFormatContext *s)
|
|
|
|
{
|
2005-12-09 16:08:18 +00:00
|
|
|
RMContext *rm = s->priv_data;
|
|
|
|
|
|
|
|
av_free(rm->audiobuf);
|
2007-10-21 17:17:28 +00:00
|
|
|
av_free(rm->videobuf);
|
2001-07-22 14:18:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-05-20 16:31:13 +00:00
|
|
|
static int rm_probe(AVProbeData *p)
|
|
|
|
{
|
|
|
|
/* check file header */
|
2003-08-11 16:16:49 +00:00
|
|
|
if ((p->buf[0] == '.' && p->buf[1] == 'R' &&
|
|
|
|
p->buf[2] == 'M' && p->buf[3] == 'F' &&
|
|
|
|
p->buf[4] == 0 && p->buf[5] == 0) ||
|
|
|
|
(p->buf[0] == '.' && p->buf[1] == 'r' &&
|
|
|
|
p->buf[2] == 'a' && p->buf[3] == 0xfd))
|
2002-05-20 16:31:13 +00:00
|
|
|
return AVPROBE_SCORE_MAX;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
static int64_t rm_read_dts(AVFormatContext *s, int stream_index,
|
2004-12-06 22:44:03 +00:00
|
|
|
int64_t *ppos, int64_t pos_limit)
|
|
|
|
{
|
|
|
|
RMContext *rm = s->priv_data;
|
|
|
|
int64_t pos, dts;
|
2004-12-06 23:43:28 +00:00
|
|
|
int stream_index2, flags, len, h;
|
2004-12-06 22:44:03 +00:00
|
|
|
|
|
|
|
pos = *ppos;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2004-12-06 22:44:03 +00:00
|
|
|
if(rm->old_format)
|
|
|
|
return AV_NOPTS_VALUE;
|
|
|
|
|
2007-11-21 07:41:00 +00:00
|
|
|
url_fseek(s->pb, pos, SEEK_SET);
|
2004-12-06 22:44:03 +00:00
|
|
|
rm->remaining_len=0;
|
|
|
|
for(;;){
|
2004-12-06 23:43:28 +00:00
|
|
|
int seq=1;
|
|
|
|
AVStream *st;
|
|
|
|
|
|
|
|
len=sync(s, &dts, &flags, &stream_index2, &pos);
|
2004-12-06 22:44:03 +00:00
|
|
|
if(len<0)
|
|
|
|
return AV_NOPTS_VALUE;
|
2004-12-06 23:43:28 +00:00
|
|
|
|
|
|
|
st = s->streams[stream_index2];
|
2005-07-17 22:24:36 +00:00
|
|
|
if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
|
2007-11-21 07:41:00 +00:00
|
|
|
h= get_byte(s->pb); len--;
|
2004-12-06 23:43:28 +00:00
|
|
|
if(!(h & 0x40)){
|
2007-11-21 07:41:00 +00:00
|
|
|
seq = get_byte(s->pb); len--;
|
2004-12-06 22:44:03 +00:00
|
|
|
}
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2004-12-06 23:43:28 +00:00
|
|
|
if((flags&2) && (seq&0x7F) == 1){
|
2006-11-01 22:39:58 +00:00
|
|
|
// av_log(s, AV_LOG_DEBUG, "%d %d-%d %"PRId64" %d\n", flags, stream_index2, stream_index, dts, seq);
|
2006-03-01 11:29:55 +00:00
|
|
|
av_add_index_entry(st, pos, dts, 0, 0, AVINDEX_KEYFRAME);
|
2004-12-06 23:43:28 +00:00
|
|
|
if(stream_index2 == stream_index)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-11-21 07:41:00 +00:00
|
|
|
url_fskip(s->pb, len);
|
2004-12-06 22:44:03 +00:00
|
|
|
}
|
|
|
|
*ppos = pos;
|
|
|
|
return dts;
|
|
|
|
}
|
|
|
|
|
2006-07-10 21:14:37 +00:00
|
|
|
AVInputFormat rm_demuxer = {
|
2002-05-20 16:31:13 +00:00
|
|
|
"rm",
|
2008-06-03 16:20:54 +00:00
|
|
|
NULL_IF_CONFIG_SMALL("RM format"),
|
2002-05-20 16:31:13 +00:00
|
|
|
sizeof(RMContext),
|
|
|
|
rm_probe,
|
|
|
|
rm_read_header,
|
|
|
|
rm_read_packet,
|
|
|
|
rm_read_close,
|
2004-12-06 22:44:03 +00:00
|
|
|
NULL,
|
|
|
|
rm_read_dts,
|
2002-05-20 16:31:13 +00:00
|
|
|
};
|