2004-07-15 21:32:54 +03:00
|
|
|
/*
|
|
|
|
* Image format
|
2009-01-19 17:46:40 +02:00
|
|
|
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard
|
2004-07-15 21:32:54 +03:00
|
|
|
* Copyright (c) 2004 Michael Niedermayer
|
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2004-07-15 21:32:54 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2004-07-15 21:32:54 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2004-07-15 21:32:54 +03: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
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-07-15 21:32:54 +03:00
|
|
|
*/
|
2008-05-09 14:56:36 +03:00
|
|
|
|
2009-01-14 03:21:24 +02:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2008-05-09 14:56:36 +03:00
|
|
|
#include "libavutil/avstring.h"
|
2011-06-04 01:13:35 +03:00
|
|
|
#include "libavutil/log.h"
|
|
|
|
#include "libavutil/opt.h"
|
|
|
|
#include "libavutil/pixdesc.h"
|
2011-06-04 01:17:31 +03:00
|
|
|
#include "libavutil/parseutils.h"
|
2004-07-15 21:32:54 +03:00
|
|
|
#include "avformat.h"
|
2011-02-24 08:36:02 +02:00
|
|
|
#include "avio_internal.h"
|
2011-04-05 14:13:53 +03:00
|
|
|
#include "internal.h"
|
2004-07-15 21:32:54 +03:00
|
|
|
|
|
|
|
typedef struct {
|
2011-06-04 01:13:35 +03:00
|
|
|
const AVClass *class; /**< Class for private options. */
|
2004-07-15 21:32:54 +03:00
|
|
|
int img_first;
|
|
|
|
int img_last;
|
|
|
|
int img_number;
|
|
|
|
int img_count;
|
|
|
|
int is_pipe;
|
2011-03-30 10:03:40 +03:00
|
|
|
int split_planes; /**< use independent file for each Y, U, V plane */
|
2004-07-15 21:32:54 +03:00
|
|
|
char path[1024];
|
2011-06-04 01:13:35 +03:00
|
|
|
char *pixel_format; /**< Set by a private option. */
|
2011-06-04 01:17:31 +03:00
|
|
|
char *video_size; /**< Set by a private option. */
|
2011-06-04 01:21:26 +03:00
|
|
|
char *framerate; /**< Set by a private option. */
|
2011-06-18 10:28:49 +03:00
|
|
|
int loop;
|
2011-11-27 18:17:10 +03:00
|
|
|
int updatefirst;
|
2004-07-15 21:32:54 +03:00
|
|
|
} VideoData;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
enum CodecID id;
|
|
|
|
const char *str;
|
|
|
|
} IdStrMap;
|
|
|
|
|
|
|
|
static const IdStrMap img_tags[] = {
|
|
|
|
{ CODEC_ID_MJPEG , "jpeg"},
|
|
|
|
{ CODEC_ID_MJPEG , "jpg"},
|
2009-06-20 17:51:03 +03:00
|
|
|
{ CODEC_ID_LJPEG , "ljpg"},
|
2011-07-06 11:04:02 +03:00
|
|
|
{ CODEC_ID_JPEGLS , "jls"},
|
2004-11-10 01:31:46 +02:00
|
|
|
{ CODEC_ID_PNG , "png"},
|
2008-02-26 12:21:33 +02:00
|
|
|
{ CODEC_ID_PNG , "mng"},
|
2004-11-11 20:09:28 +02:00
|
|
|
{ CODEC_ID_PPM , "ppm"},
|
2008-12-04 17:08:04 +02:00
|
|
|
{ CODEC_ID_PPM , "pnm"},
|
2004-11-11 20:09:28 +02:00
|
|
|
{ CODEC_ID_PGM , "pgm"},
|
|
|
|
{ CODEC_ID_PGMYUV , "pgmyuv"},
|
|
|
|
{ CODEC_ID_PBM , "pbm"},
|
|
|
|
{ CODEC_ID_PAM , "pam"},
|
2004-07-15 21:32:54 +03:00
|
|
|
{ CODEC_ID_MPEG1VIDEO, "mpg1-img"},
|
|
|
|
{ CODEC_ID_MPEG2VIDEO, "mpg2-img"},
|
|
|
|
{ CODEC_ID_MPEG4 , "mpg4-img"},
|
|
|
|
{ CODEC_ID_FFV1 , "ffv1-img"},
|
2005-01-04 15:27:35 +02:00
|
|
|
{ CODEC_ID_RAWVIDEO , "y"},
|
2011-03-30 10:06:10 +03:00
|
|
|
{ CODEC_ID_RAWVIDEO , "raw"},
|
2005-11-30 03:40:50 +02:00
|
|
|
{ CODEC_ID_BMP , "bmp"},
|
2006-10-22 18:07:25 +03:00
|
|
|
{ CODEC_ID_GIF , "gif"},
|
2006-10-23 16:17:46 +03:00
|
|
|
{ CODEC_ID_TARGA , "tga"},
|
|
|
|
{ CODEC_ID_TIFF , "tiff"},
|
2008-05-30 16:26:40 +03:00
|
|
|
{ CODEC_ID_TIFF , "tif"},
|
2007-04-06 21:29:27 +03:00
|
|
|
{ CODEC_ID_SGI , "sgi"},
|
2007-05-08 14:57:49 +03:00
|
|
|
{ CODEC_ID_PTX , "ptx"},
|
2007-12-27 00:17:46 +02:00
|
|
|
{ CODEC_ID_PCX , "pcx"},
|
2007-12-28 15:07:43 +02:00
|
|
|
{ CODEC_ID_SUNRAST , "sun"},
|
|
|
|
{ CODEC_ID_SUNRAST , "ras"},
|
|
|
|
{ CODEC_ID_SUNRAST , "rs"},
|
|
|
|
{ CODEC_ID_SUNRAST , "im1"},
|
|
|
|
{ CODEC_ID_SUNRAST , "im8"},
|
|
|
|
{ CODEC_ID_SUNRAST , "im24"},
|
|
|
|
{ CODEC_ID_SUNRAST , "sunras"},
|
2011-05-02 02:45:05 +03:00
|
|
|
{ CODEC_ID_JPEG2000 , "j2k"},
|
2008-12-17 13:22:51 +02:00
|
|
|
{ CODEC_ID_JPEG2000 , "jp2"},
|
2011-05-24 00:13:34 +03:00
|
|
|
{ CODEC_ID_JPEG2000 , "jpc"},
|
2009-06-12 08:29:29 +03:00
|
|
|
{ CODEC_ID_DPX , "dpx"},
|
2010-06-08 14:55:55 +03:00
|
|
|
{ CODEC_ID_PICTOR , "pic"},
|
2008-05-12 13:30:40 +03:00
|
|
|
{ CODEC_ID_NONE , NULL}
|
2004-07-15 21:32:54 +03:00
|
|
|
};
|
|
|
|
|
2008-08-24 20:24:34 +03:00
|
|
|
static const int sizes[][2] = {
|
2005-01-04 15:27:35 +02:00
|
|
|
{ 640, 480 },
|
|
|
|
{ 720, 480 },
|
|
|
|
{ 720, 576 },
|
|
|
|
{ 352, 288 },
|
|
|
|
{ 352, 240 },
|
|
|
|
{ 160, 128 },
|
|
|
|
{ 512, 384 },
|
|
|
|
{ 640, 352 },
|
|
|
|
{ 640, 240 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static int infer_size(int *width_ptr, int *height_ptr, int size)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2008-10-22 00:40:24 +03:00
|
|
|
for(i=0;i<FF_ARRAY_ELEMS(sizes);i++) {
|
2005-01-04 15:27:35 +02:00
|
|
|
if ((sizes[i][0] * sizes[i][1]) == size) {
|
|
|
|
*width_ptr = sizes[i][0];
|
|
|
|
*height_ptr = sizes[i][1];
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
2004-07-15 21:32:54 +03:00
|
|
|
static enum CodecID av_str2id(const IdStrMap *tags, const char *str)
|
|
|
|
{
|
2004-09-23 00:25:09 +03:00
|
|
|
str= strrchr(str, '.');
|
|
|
|
if(!str) return CODEC_ID_NONE;
|
|
|
|
str++;
|
2004-07-15 21:32:54 +03:00
|
|
|
|
|
|
|
while (tags->id) {
|
2011-11-02 22:17:25 +03:00
|
|
|
if (!av_strcasecmp(str, tags->str))
|
2008-05-12 04:17:00 +03:00
|
|
|
return tags->id;
|
2004-07-15 21:32:54 +03:00
|
|
|
|
|
|
|
tags++;
|
|
|
|
}
|
|
|
|
return CODEC_ID_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return -1 if no image found */
|
2005-12-17 20:14:38 +02:00
|
|
|
static int find_image_range(int *pfirst_index, int *plast_index,
|
2004-07-15 21:32:54 +03:00
|
|
|
const char *path)
|
|
|
|
{
|
|
|
|
char buf[1024];
|
|
|
|
int range, last_index, range1, first_index;
|
|
|
|
|
|
|
|
/* find the first image */
|
|
|
|
for(first_index = 0; first_index < 5; first_index++) {
|
2006-09-04 12:57:47 +03:00
|
|
|
if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){
|
2005-12-17 20:14:38 +02:00
|
|
|
*pfirst_index =
|
2004-07-15 23:15:40 +03:00
|
|
|
*plast_index = 1;
|
2011-04-09 02:32:37 +03:00
|
|
|
if (avio_check(buf, AVIO_FLAG_READ) > 0)
|
2009-10-22 19:27:01 +03:00
|
|
|
return 0;
|
|
|
|
return -1;
|
2004-07-15 23:15:40 +03:00
|
|
|
}
|
2011-04-09 02:32:37 +03:00
|
|
|
if (avio_check(buf, AVIO_FLAG_READ) > 0)
|
2004-07-15 21:32:54 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (first_index == 5)
|
|
|
|
goto fail;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2004-07-15 21:32:54 +03:00
|
|
|
/* find the last image */
|
|
|
|
last_index = first_index;
|
|
|
|
for(;;) {
|
|
|
|
range = 0;
|
|
|
|
for(;;) {
|
|
|
|
if (!range)
|
|
|
|
range1 = 1;
|
|
|
|
else
|
|
|
|
range1 = 2 * range;
|
2006-09-04 12:57:47 +03:00
|
|
|
if (av_get_frame_filename(buf, sizeof(buf), path,
|
|
|
|
last_index + range1) < 0)
|
2004-07-15 21:32:54 +03:00
|
|
|
goto fail;
|
2011-04-09 02:32:37 +03:00
|
|
|
if (avio_check(buf, AVIO_FLAG_READ) <= 0)
|
2004-07-15 21:32:54 +03:00
|
|
|
break;
|
|
|
|
range = range1;
|
|
|
|
/* just in case... */
|
|
|
|
if (range >= (1 << 30))
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
/* we are sure than image last_index + range exists */
|
|
|
|
if (!range)
|
|
|
|
break;
|
|
|
|
last_index += range;
|
|
|
|
}
|
|
|
|
*pfirst_index = first_index;
|
|
|
|
*plast_index = last_index;
|
|
|
|
return 0;
|
|
|
|
fail:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-21 03:57:53 +03:00
|
|
|
static int read_probe(AVProbeData *p)
|
2004-07-15 21:32:54 +03:00
|
|
|
{
|
2006-12-21 01:33:50 +02:00
|
|
|
if (p->filename && av_str2id(img_tags, p->filename)) {
|
2006-12-04 13:42:48 +02:00
|
|
|
if (av_filename_number_test(p->filename))
|
|
|
|
return AVPROBE_SCORE_MAX;
|
|
|
|
else
|
|
|
|
return AVPROBE_SCORE_MAX/2;
|
|
|
|
}
|
|
|
|
return 0;
|
2004-07-15 21:32:54 +03:00
|
|
|
}
|
|
|
|
|
2011-04-05 14:13:53 +03:00
|
|
|
enum CodecID ff_guess_image2_codec(const char *filename)
|
|
|
|
{
|
|
|
|
return av_str2id(img_tags, filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if FF_API_GUESS_IMG2_CODEC
|
2004-11-11 20:09:28 +02:00
|
|
|
enum CodecID av_guess_image2_codec(const char *filename){
|
|
|
|
return av_str2id(img_tags, filename);
|
|
|
|
}
|
2011-04-05 14:13:53 +03:00
|
|
|
#endif
|
2004-11-11 20:09:28 +02:00
|
|
|
|
2010-10-21 03:57:53 +03:00
|
|
|
static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
|
2004-07-15 21:32:54 +03:00
|
|
|
{
|
|
|
|
VideoData *s = s1->priv_data;
|
2011-06-04 01:17:31 +03:00
|
|
|
int first_index, last_index, ret = 0;
|
|
|
|
int width = 0, height = 0;
|
2004-07-15 21:32:54 +03:00
|
|
|
AVStream *st;
|
2011-06-04 01:13:35 +03:00
|
|
|
enum PixelFormat pix_fmt = PIX_FMT_NONE;
|
2011-06-04 01:21:26 +03:00
|
|
|
AVRational framerate;
|
2004-07-15 21:32:54 +03:00
|
|
|
|
|
|
|
s1->ctx_flags |= AVFMTCTX_NOHEADER;
|
|
|
|
|
2011-06-18 12:43:24 +03:00
|
|
|
st = avformat_new_stream(s1, NULL);
|
2004-07-15 21:32:54 +03:00
|
|
|
if (!st) {
|
2007-02-13 20:26:14 +02:00
|
|
|
return AVERROR(ENOMEM);
|
2004-07-15 21:32:54 +03:00
|
|
|
}
|
|
|
|
|
2011-06-04 01:13:35 +03:00
|
|
|
if (s->pixel_format && (pix_fmt = av_get_pix_fmt(s->pixel_format)) == PIX_FMT_NONE) {
|
|
|
|
av_log(s1, AV_LOG_ERROR, "No such pixel format: %s.\n", s->pixel_format);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
2011-06-04 01:17:31 +03:00
|
|
|
if (s->video_size && (ret = av_parse_video_size(&width, &height, s->video_size)) < 0) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Could not parse video size: %s.\n", s->video_size);
|
|
|
|
return ret;
|
|
|
|
}
|
2011-06-04 01:21:26 +03:00
|
|
|
if ((ret = av_parse_video_rate(&framerate, s->framerate)) < 0) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Could not parse framerate: %s.\n", s->framerate);
|
|
|
|
return ret;
|
|
|
|
}
|
2011-06-04 01:13:35 +03:00
|
|
|
|
2011-06-18 10:28:49 +03:00
|
|
|
#if FF_API_LOOP_INPUT
|
|
|
|
if (s1->loop_input)
|
|
|
|
s->loop = s1->loop_input;
|
|
|
|
#endif
|
|
|
|
|
2007-06-24 02:10:32 +03:00
|
|
|
av_strlcpy(s->path, s1->filename, sizeof(s->path));
|
2004-07-15 21:32:54 +03:00
|
|
|
s->img_number = 0;
|
|
|
|
s->img_count = 0;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2004-07-15 21:32:54 +03:00
|
|
|
/* find format */
|
|
|
|
if (s1->iformat->flags & AVFMT_NOFILE)
|
|
|
|
s->is_pipe = 0;
|
2004-10-25 01:39:08 +03:00
|
|
|
else{
|
2004-07-15 21:32:54 +03:00
|
|
|
s->is_pipe = 1;
|
2007-04-15 16:51:57 +03:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2004-10-25 01:39:08 +03:00
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2011-11-29 21:28:15 +03:00
|
|
|
avpriv_set_pts_info(st, 60, framerate.den, framerate.num);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2011-06-04 01:17:31 +03:00
|
|
|
if (width && height) {
|
|
|
|
st->codec->width = width;
|
|
|
|
st->codec->height = height;
|
2005-01-04 15:27:35 +02:00
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2004-07-15 21:32:54 +03:00
|
|
|
if (!s->is_pipe) {
|
|
|
|
if (find_image_range(&first_index, &last_index, s->path) < 0)
|
2009-10-22 19:27:01 +03:00
|
|
|
return AVERROR(ENOENT);
|
2004-07-15 21:32:54 +03:00
|
|
|
s->img_first = first_index;
|
|
|
|
s->img_last = last_index;
|
|
|
|
s->img_number = first_index;
|
|
|
|
/* compute duration */
|
|
|
|
st->start_time = 0;
|
2005-05-01 00:43:59 +03:00
|
|
|
st->duration = last_index - first_index + 1;
|
2004-07-15 21:32:54 +03:00
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2010-01-28 17:45:21 +02:00
|
|
|
if(s1->video_codec_id){
|
2010-03-31 02:30:55 +03:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
2010-01-28 17:45:21 +02:00
|
|
|
st->codec->codec_id = s1->video_codec_id;
|
|
|
|
}else if(s1->audio_codec_id){
|
2010-03-31 02:30:55 +03:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2010-01-28 17:45:21 +02:00
|
|
|
st->codec->codec_id = s1->audio_codec_id;
|
2004-11-11 20:09:28 +02:00
|
|
|
}else{
|
2011-03-30 10:03:40 +03:00
|
|
|
const char *str= strrchr(s->path, '.');
|
2011-11-02 22:17:25 +03:00
|
|
|
s->split_planes = str && !av_strcasecmp(str + 1, "y");
|
2010-03-31 02:30:55 +03:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
2005-07-18 01:24:36 +03:00
|
|
|
st->codec->codec_id = av_str2id(img_tags, s->path);
|
2011-12-07 05:19:42 +03:00
|
|
|
if (st->codec->codec_id == CODEC_ID_LJPEG)
|
2011-12-07 04:32:59 +03:00
|
|
|
st->codec->codec_id = CODEC_ID_MJPEG;
|
2004-11-11 20:09:28 +02:00
|
|
|
}
|
2011-06-04 01:13:35 +03:00
|
|
|
if(st->codec->codec_type == AVMEDIA_TYPE_VIDEO && pix_fmt != PIX_FMT_NONE)
|
|
|
|
st->codec->pix_fmt = pix_fmt;
|
2004-07-15 21:32:54 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-10-21 03:57:53 +03:00
|
|
|
static int read_packet(AVFormatContext *s1, AVPacket *pkt)
|
2004-07-15 21:32:54 +03:00
|
|
|
{
|
|
|
|
VideoData *s = s1->priv_data;
|
|
|
|
char filename[1024];
|
2005-01-04 15:27:35 +02:00
|
|
|
int i;
|
|
|
|
int size[3]={0}, ret[3]={0};
|
2011-02-20 12:04:12 +02:00
|
|
|
AVIOContext *f[3];
|
2005-07-18 01:24:36 +03:00
|
|
|
AVCodecContext *codec= s1->streams[0]->codec;
|
2004-07-15 21:32:54 +03:00
|
|
|
|
|
|
|
if (!s->is_pipe) {
|
|
|
|
/* loop over input */
|
2011-06-18 10:28:49 +03:00
|
|
|
if (s->loop && s->img_number > s->img_last) {
|
2004-07-15 21:32:54 +03:00
|
|
|
s->img_number = s->img_first;
|
2004-11-16 18:28:27 +02:00
|
|
|
}
|
2009-07-30 11:21:11 +03:00
|
|
|
if (s->img_number > s->img_last)
|
|
|
|
return AVERROR_EOF;
|
2006-09-04 12:57:47 +03:00
|
|
|
if (av_get_frame_filename(filename, sizeof(filename),
|
|
|
|
s->path, s->img_number)<0 && s->img_number > 1)
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO);
|
2005-01-04 15:27:35 +02:00
|
|
|
for(i=0; i<3; i++){
|
2011-11-07 00:11:29 +03:00
|
|
|
if (avio_open2(&f[i], filename, AVIO_FLAG_READ,
|
|
|
|
&s1->interrupt_callback, NULL) < 0) {
|
2010-03-22 22:18:42 +02:00
|
|
|
if(i==1)
|
|
|
|
break;
|
2009-06-20 12:00:12 +03:00
|
|
|
av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",filename);
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO);
|
2009-06-20 12:00:12 +03:00
|
|
|
}
|
2011-03-04 20:57:36 +02:00
|
|
|
size[i]= avio_size(f[i]);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2011-03-30 10:03:40 +03:00
|
|
|
if(!s->split_planes)
|
2005-01-04 15:27:35 +02:00
|
|
|
break;
|
|
|
|
filename[ strlen(filename) - 1 ]= 'U' + i;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2005-01-04 15:27:35 +02:00
|
|
|
if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width)
|
|
|
|
infer_size(&codec->width, &codec->height, size[0]);
|
2004-07-15 21:32:54 +03:00
|
|
|
} else {
|
2007-11-21 09:41:00 +02:00
|
|
|
f[0] = s1->pb;
|
2005-01-04 15:27:35 +02:00
|
|
|
if (url_feof(f[0]))
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO);
|
2005-01-04 15:27:35 +02:00
|
|
|
size[0]= 4096;
|
2004-07-15 21:32:54 +03:00
|
|
|
}
|
|
|
|
|
2005-01-04 15:27:35 +02:00
|
|
|
av_new_packet(pkt, size[0] + size[1] + size[2]);
|
2004-07-15 21:32:54 +03:00
|
|
|
pkt->stream_index = 0;
|
2010-03-31 15:29:58 +03:00
|
|
|
pkt->flags |= AV_PKT_FLAG_KEY;
|
2004-07-15 21:32:54 +03:00
|
|
|
|
2005-01-04 15:27:35 +02:00
|
|
|
pkt->size= 0;
|
|
|
|
for(i=0; i<3; i++){
|
|
|
|
if(size[i]){
|
2011-02-21 17:43:01 +02:00
|
|
|
ret[i]= avio_read(f[i], pkt->data + pkt->size, size[i]);
|
2005-01-04 15:27:35 +02:00
|
|
|
if (!s->is_pipe)
|
2011-02-21 23:45:20 +02:00
|
|
|
avio_close(f[i]);
|
2005-01-04 15:27:35 +02:00
|
|
|
if(ret[i]>0)
|
|
|
|
pkt->size += ret[i];
|
|
|
|
}
|
2004-07-15 21:32:54 +03:00
|
|
|
}
|
|
|
|
|
2005-01-04 15:27:35 +02:00
|
|
|
if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) {
|
2004-07-15 21:32:54 +03:00
|
|
|
av_free_packet(pkt);
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO); /* signal EOF */
|
2004-07-15 21:32:54 +03:00
|
|
|
} else {
|
|
|
|
s->img_count++;
|
|
|
|
s->img_number++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-14 01:44:16 +02:00
|
|
|
#if CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER
|
2004-07-15 21:32:54 +03:00
|
|
|
/******************************************************/
|
|
|
|
/* image output */
|
|
|
|
|
2010-10-21 03:57:53 +03:00
|
|
|
static int write_header(AVFormatContext *s)
|
2004-07-15 21:32:54 +03:00
|
|
|
{
|
|
|
|
VideoData *img = s->priv_data;
|
2011-03-30 10:03:40 +03:00
|
|
|
const char *str;
|
2004-07-15 21:32:54 +03:00
|
|
|
|
|
|
|
img->img_number = 1;
|
2007-06-24 02:10:32 +03:00
|
|
|
av_strlcpy(img->path, s->filename, sizeof(img->path));
|
2004-07-15 21:32:54 +03:00
|
|
|
|
|
|
|
/* find format */
|
|
|
|
if (s->oformat->flags & AVFMT_NOFILE)
|
|
|
|
img->is_pipe = 0;
|
|
|
|
else
|
|
|
|
img->is_pipe = 1;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2011-03-30 10:03:40 +03:00
|
|
|
str = strrchr(img->path, '.');
|
2011-11-02 22:17:25 +03:00
|
|
|
img->split_planes = str && !av_strcasecmp(str + 1, "y");
|
2004-07-15 21:32:54 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-10-21 03:57:53 +03:00
|
|
|
static int write_packet(AVFormatContext *s, AVPacket *pkt)
|
2004-07-15 21:32:54 +03:00
|
|
|
{
|
|
|
|
VideoData *img = s->priv_data;
|
2011-02-20 12:04:12 +02:00
|
|
|
AVIOContext *pb[3];
|
2004-07-15 21:32:54 +03:00
|
|
|
char filename[1024];
|
2005-07-18 01:24:36 +03:00
|
|
|
AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
|
2005-01-04 15:27:35 +02:00
|
|
|
int i;
|
2004-07-15 21:32:54 +03:00
|
|
|
|
|
|
|
if (!img->is_pipe) {
|
2006-09-04 12:57:47 +03:00
|
|
|
if (av_get_frame_filename(filename, sizeof(filename),
|
2011-11-27 18:17:10 +03:00
|
|
|
img->path, img->img_number) < 0 && img->img_number>1 && !img->updatefirst) {
|
|
|
|
av_log(s, AV_LOG_ERROR,
|
|
|
|
"Could not get frame filename number %d from pattern '%s'\n",
|
|
|
|
img->img_number, img->path);
|
|
|
|
return AVERROR(EINVAL);
|
2009-12-02 01:10:32 +02:00
|
|
|
}
|
2005-01-04 15:27:35 +02:00
|
|
|
for(i=0; i<3; i++){
|
2011-11-07 00:11:29 +03:00
|
|
|
if (avio_open2(&pb[i], filename, AVIO_FLAG_WRITE,
|
|
|
|
&s->interrupt_callback, NULL) < 0) {
|
2009-06-20 12:00:12 +03:00
|
|
|
av_log(s, AV_LOG_ERROR, "Could not open file : %s\n",filename);
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO);
|
2009-06-20 12:00:12 +03:00
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2011-03-30 10:03:40 +03:00
|
|
|
if(!img->split_planes)
|
2005-01-04 15:27:35 +02:00
|
|
|
break;
|
|
|
|
filename[ strlen(filename) - 1 ]= 'U' + i;
|
|
|
|
}
|
2004-07-15 21:32:54 +03:00
|
|
|
} else {
|
2007-11-21 09:41:00 +02:00
|
|
|
pb[0] = s->pb;
|
2004-07-15 21:32:54 +03:00
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2011-03-30 10:03:40 +03:00
|
|
|
if(img->split_planes){
|
2005-04-13 04:07:30 +03:00
|
|
|
int ysize = codec->width * codec->height;
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_write(pb[0], pkt->data , ysize);
|
|
|
|
avio_write(pb[1], pkt->data + ysize, (pkt->size - ysize)/2);
|
|
|
|
avio_write(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2);
|
2011-03-14 21:39:06 +02:00
|
|
|
avio_flush(pb[1]);
|
|
|
|
avio_flush(pb[2]);
|
2011-02-21 23:45:20 +02:00
|
|
|
avio_close(pb[1]);
|
|
|
|
avio_close(pb[2]);
|
2005-01-04 15:27:35 +02:00
|
|
|
}else{
|
2009-01-18 03:48:14 +02:00
|
|
|
if(av_str2id(img_tags, s->filename) == CODEC_ID_JPEG2000){
|
|
|
|
AVStream *st = s->streams[0];
|
|
|
|
if(st->codec->extradata_size > 8 &&
|
|
|
|
AV_RL32(st->codec->extradata+4) == MKTAG('j','p','2','h')){
|
|
|
|
if(pkt->size < 8 || AV_RL32(pkt->data+4) != MKTAG('j','p','2','c'))
|
|
|
|
goto error;
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_wb32(pb[0], 12);
|
2011-02-24 08:36:02 +02:00
|
|
|
ffio_wfourcc(pb[0], "jP ");
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_wb32(pb[0], 0x0D0A870A); // signature
|
|
|
|
avio_wb32(pb[0], 20);
|
2011-02-24 08:36:02 +02:00
|
|
|
ffio_wfourcc(pb[0], "ftyp");
|
|
|
|
ffio_wfourcc(pb[0], "jp2 ");
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_wb32(pb[0], 0);
|
2011-02-24 08:36:02 +02:00
|
|
|
ffio_wfourcc(pb[0], "jp2 ");
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_write(pb[0], st->codec->extradata, st->codec->extradata_size);
|
2011-09-27 21:45:59 +03:00
|
|
|
}else if(pkt->size >= 8 && AV_RB32(pkt->data) == 0xFF4FFF51){
|
|
|
|
//jpeg2000 codestream
|
2009-01-18 03:48:14 +02:00
|
|
|
}else if(pkt->size < 8 ||
|
|
|
|
(!st->codec->extradata_size &&
|
|
|
|
AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature
|
|
|
|
error:
|
2011-12-12 03:25:37 +03:00
|
|
|
av_log(s, AV_LOG_ERROR, "malformed JPEG 2000 codestream %X\n", AV_RB32(pkt->data));
|
2009-01-18 03:48:14 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_write(pb[0], pkt->data, pkt->size);
|
2005-01-04 15:27:35 +02:00
|
|
|
}
|
2011-03-14 21:39:06 +02:00
|
|
|
avio_flush(pb[0]);
|
2004-07-15 21:32:54 +03:00
|
|
|
if (!img->is_pipe) {
|
2011-02-21 23:45:20 +02:00
|
|
|
avio_close(pb[0]);
|
2004-07-15 21:32:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
img->img_number++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-14 01:44:16 +02:00
|
|
|
#endif /* CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER */
|
2006-01-20 01:36:50 +02:00
|
|
|
|
2011-06-04 01:13:35 +03:00
|
|
|
#define OFFSET(x) offsetof(VideoData, x)
|
|
|
|
#define DEC AV_OPT_FLAG_DECODING_PARAM
|
2011-11-27 18:17:10 +03:00
|
|
|
#define ENC AV_OPT_FLAG_ENCODING_PARAM
|
2011-06-04 01:13:35 +03:00
|
|
|
static const AVOption options[] = {
|
2011-10-04 08:38:01 +03:00
|
|
|
{ "pixel_format", "", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
|
|
|
|
{ "video_size", "", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
|
|
|
|
{ "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC },
|
|
|
|
{ "loop", "", OFFSET(loop), AV_OPT_TYPE_INT, {.dbl = 0}, 0, 1, DEC },
|
2011-06-04 01:13:35 +03:00
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
2011-11-27 18:17:10 +03:00
|
|
|
static const AVOption muxoptions[] = {
|
|
|
|
{ "updatefirst", "", OFFSET(updatefirst), AV_OPT_TYPE_INT, {.dbl = 0}, 0, 1, ENC },
|
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
2011-10-03 20:14:03 +03:00
|
|
|
/* input */
|
|
|
|
#if CONFIG_IMAGE2_DEMUXER
|
2011-06-04 01:13:35 +03:00
|
|
|
static const AVClass img2_class = {
|
|
|
|
.class_name = "image2 demuxer",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
2011-01-26 00:03:28 +02:00
|
|
|
AVInputFormat ff_image2_demuxer = {
|
2010-10-22 01:07:00 +03:00
|
|
|
.name = "image2",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
|
2010-10-21 03:57:53 +03:00
|
|
|
.priv_data_size = sizeof(VideoData),
|
2010-10-22 01:07:00 +03:00
|
|
|
.read_probe = read_probe,
|
|
|
|
.read_header = read_header,
|
|
|
|
.read_packet = read_packet,
|
|
|
|
.flags = AVFMT_NOFILE,
|
2011-06-04 01:13:35 +03:00
|
|
|
.priv_class = &img2_class,
|
2004-07-15 21:32:54 +03:00
|
|
|
};
|
2006-07-11 00:14:37 +03:00
|
|
|
#endif
|
2009-01-14 01:44:16 +02:00
|
|
|
#if CONFIG_IMAGE2PIPE_DEMUXER
|
2011-10-03 20:14:03 +03:00
|
|
|
static const AVClass img2pipe_class = {
|
|
|
|
.class_name = "image2pipe demuxer",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
2011-01-26 00:03:28 +02:00
|
|
|
AVInputFormat ff_image2pipe_demuxer = {
|
2010-10-22 01:07:00 +03:00
|
|
|
.name = "image2pipe",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
|
2010-10-21 03:57:53 +03:00
|
|
|
.priv_data_size = sizeof(VideoData),
|
2010-10-22 01:07:00 +03:00
|
|
|
.read_header = read_header,
|
|
|
|
.read_packet = read_packet,
|
2011-10-03 20:14:03 +03:00
|
|
|
.priv_class = &img2pipe_class,
|
2004-07-15 21:32:54 +03:00
|
|
|
};
|
2006-07-11 00:14:37 +03:00
|
|
|
#endif
|
2004-07-15 21:32:54 +03:00
|
|
|
|
|
|
|
/* output */
|
2009-01-14 01:44:16 +02:00
|
|
|
#if CONFIG_IMAGE2_MUXER
|
2011-11-27 18:17:10 +03:00
|
|
|
static const AVClass img2mux_class = {
|
|
|
|
.class_name = "image2 muxer",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = muxoptions,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
2011-01-26 00:03:28 +02:00
|
|
|
AVOutputFormat ff_image2_muxer = {
|
2010-10-22 01:07:00 +03:00
|
|
|
.name = "image2",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
|
2011-07-06 11:04:02 +03:00
|
|
|
.extensions = "bmp,dpx,jls,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
|
2010-10-22 01:07:00 +03:00
|
|
|
"ppm,sgi,tga,tif,tiff,jp2",
|
2010-10-21 03:57:53 +03:00
|
|
|
.priv_data_size = sizeof(VideoData),
|
2010-10-22 01:07:00 +03:00
|
|
|
.video_codec = CODEC_ID_MJPEG,
|
|
|
|
.write_header = write_header,
|
|
|
|
.write_packet = write_packet,
|
2011-11-27 18:17:10 +03:00
|
|
|
.flags = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE,
|
|
|
|
.priv_class = &img2mux_class,
|
2004-07-15 21:32:54 +03:00
|
|
|
};
|
2006-07-11 00:14:37 +03:00
|
|
|
#endif
|
2009-01-14 01:44:16 +02:00
|
|
|
#if CONFIG_IMAGE2PIPE_MUXER
|
2011-01-26 00:03:28 +02:00
|
|
|
AVOutputFormat ff_image2pipe_muxer = {
|
2010-10-22 01:07:00 +03:00
|
|
|
.name = "image2pipe",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
|
2010-10-21 03:57:53 +03:00
|
|
|
.priv_data_size = sizeof(VideoData),
|
2010-10-22 01:07:00 +03:00
|
|
|
.video_codec = CODEC_ID_MJPEG,
|
|
|
|
.write_header = write_header,
|
|
|
|
.write_packet = write_packet,
|
|
|
|
.flags = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
|
2004-07-15 21:32:54 +03:00
|
|
|
};
|
2006-01-20 01:36:50 +02:00
|
|
|
#endif
|