2010-01-14 12:55:44 +00:00
|
|
|
/*
|
|
|
|
* Adobe Filmstrip demuxer
|
|
|
|
* Copyright (c) 2010 Peter Ross
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2010-01-14 12:55:44 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2010-01-14 12:55:44 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2010-01-14 12:55:44 +00:00
|
|
|
* 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
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2010-01-14 12:55:44 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2010-01-14 12:55:44 +00:00
|
|
|
* Adobe Filmstrip demuxer
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libavutil/intreadwrite.h"
|
|
|
|
#include "avformat.h"
|
|
|
|
|
|
|
|
#define RAND_TAG MKBETAG('R','a','n','d')
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int leading;
|
|
|
|
} FilmstripDemuxContext;
|
|
|
|
|
|
|
|
static int read_header(AVFormatContext *s,
|
|
|
|
AVFormatParameters *ap)
|
|
|
|
{
|
|
|
|
FilmstripDemuxContext *film = s->priv_data;
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2010-01-14 12:55:44 +00:00
|
|
|
AVStream *st;
|
|
|
|
|
2011-03-05 20:06:46 +00:00
|
|
|
if (!s->pb->seekable)
|
2010-01-14 12:55:44 +00:00
|
|
|
return AVERROR(EIO);
|
|
|
|
|
2011-03-04 18:57:36 +00:00
|
|
|
avio_seek(pb, avio_size(pb) - 36, SEEK_SET);
|
2011-02-21 15:43:01 +00:00
|
|
|
if (avio_rb32(pb) != RAND_TAG) {
|
2010-01-14 12:55:44 +00:00
|
|
|
av_log(s, AV_LOG_ERROR, "magic number not found");
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
|
|
|
|
|
|
|
st = av_new_stream(s, 0);
|
|
|
|
if (!st)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
st->nb_frames = avio_rb32(pb);
|
|
|
|
if (avio_rb16(pb) != 0) {
|
2010-01-14 12:55:44 +00:00
|
|
|
av_log_ask_for_sample(s, "unsupported packing method\n");
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
|
|
|
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(pb, 2);
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
2010-01-14 12:55:44 +00:00
|
|
|
st->codec->codec_id = CODEC_ID_RAWVIDEO;
|
|
|
|
st->codec->pix_fmt = PIX_FMT_RGBA;
|
|
|
|
st->codec->codec_tag = 0; /* no fourcc */
|
2011-02-21 15:43:01 +00:00
|
|
|
st->codec->width = avio_rb16(pb);
|
|
|
|
st->codec->height = avio_rb16(pb);
|
|
|
|
film->leading = avio_rb16(pb);
|
|
|
|
av_set_pts_info(st, 64, 1, avio_rb16(pb));
|
2010-01-14 12:55:44 +00:00
|
|
|
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(pb, 0, SEEK_SET);
|
2010-01-14 12:55:44 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int read_packet(AVFormatContext *s,
|
|
|
|
AVPacket *pkt)
|
|
|
|
{
|
|
|
|
FilmstripDemuxContext *film = s->priv_data;
|
|
|
|
AVStream *st = s->streams[0];
|
|
|
|
|
2011-03-07 20:50:25 +00:00
|
|
|
if (s->pb->eof_reached)
|
2010-01-14 12:55:44 +00:00
|
|
|
return AVERROR(EIO);
|
2011-03-03 19:11:45 +00:00
|
|
|
pkt->dts = avio_tell(s->pb) / (st->codec->width * (st->codec->height + film->leading) * 4);
|
2010-01-14 12:55:44 +00:00
|
|
|
pkt->size = av_get_packet(s->pb, pkt, st->codec->width * st->codec->height * 4);
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(s->pb, st->codec->width * film->leading * 4);
|
2010-01-14 12:55:44 +00:00
|
|
|
if (pkt->size < 0)
|
|
|
|
return pkt->size;
|
2010-03-31 12:29:58 +00:00
|
|
|
pkt->flags |= AV_PKT_FLAG_KEY;
|
2010-01-14 12:55:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
|
|
|
|
{
|
|
|
|
AVStream *st = s->streams[stream_index];
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(s->pb, FFMAX(timestamp, 0) * st->codec->width * st->codec->height * 4, SEEK_SET);
|
2010-01-14 12:55:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_filmstrip_demuxer = {
|
2010-01-14 12:55:44 +00:00
|
|
|
"filmstrip",
|
|
|
|
NULL_IF_CONFIG_SMALL("Adobe Filmstrip"),
|
|
|
|
sizeof(FilmstripDemuxContext),
|
|
|
|
NULL,
|
|
|
|
read_header,
|
|
|
|
read_packet,
|
|
|
|
NULL,
|
|
|
|
read_seek,
|
|
|
|
.extensions = "flm",
|
|
|
|
};
|