Files
ffmpeg/libavformat/img2.c
T

549 lines
17 KiB
C
Raw Normal View History

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