img2.c 15.4 KB
Newer Older
1 2
/*
 * Image format
3
 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4 5
 * Copyright (c) 2004 Michael Niedermayer
 *
6
 * This file is part of Libav.
7
 *
8
 * Libav is free software; you can redistribute it and/or
9 10
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
11
 * version 2.1 of the License, or (at your option) any later version.
12
 *
13
 * Libav is distributed in the hope that it will be useful,
14 15 16 17 18
 * 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
19
 * License along with Libav; if not, write to the Free Software
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21
 */
22

23
#include "libavutil/intreadwrite.h"
24
#include "libavutil/avstring.h"
25 26 27
#include "libavutil/log.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
28
#include "libavutil/parseutils.h"
29
#include "avformat.h"
30
#include "avio_internal.h"
31
#include "internal.h"
32
#include <strings.h>
33 34

typedef struct {
35
    const AVClass *class;  /**< Class for private options. */
36 37 38 39 40 41
    int img_first;
    int img_last;
    int img_number;
    int img_count;
    int is_pipe;
    char path[1024];
42
    char *pixel_format;     /**< Set by a private option. */
43
    char *video_size;       /**< Set by a private option. */
44
    char *framerate;        /**< Set by a private option. */
45 46 47 48 49 50 51 52 53 54
} VideoData;

typedef struct {
    enum CodecID id;
    const char *str;
} IdStrMap;

static const IdStrMap img_tags[] = {
    { CODEC_ID_MJPEG     , "jpeg"},
    { CODEC_ID_MJPEG     , "jpg"},
55
    { CODEC_ID_LJPEG     , "ljpg"},
56
    { CODEC_ID_PNG       , "png"},
L
Loren Merritt 已提交
57
    { CODEC_ID_PNG       , "mng"},
58
    { CODEC_ID_PPM       , "ppm"},
C
Carl Eugen Hoyos 已提交
59
    { CODEC_ID_PPM       , "pnm"},
60 61 62 63
    { CODEC_ID_PGM       , "pgm"},
    { CODEC_ID_PGMYUV    , "pgmyuv"},
    { CODEC_ID_PBM       , "pbm"},
    { CODEC_ID_PAM       , "pam"},
64 65 66 67
    { CODEC_ID_MPEG1VIDEO, "mpg1-img"},
    { CODEC_ID_MPEG2VIDEO, "mpg2-img"},
    { CODEC_ID_MPEG4     , "mpg4-img"},
    { CODEC_ID_FFV1      , "ffv1-img"},
M
Michael Niedermayer 已提交
68
    { CODEC_ID_RAWVIDEO  , "y"},
M
Måns Rullgård 已提交
69
    { CODEC_ID_BMP       , "bmp"},
B
Baptiste Coudurier 已提交
70
    { CODEC_ID_GIF       , "gif"},
71 72
    { CODEC_ID_TARGA     , "tga"},
    { CODEC_ID_TIFF      , "tiff"},
Q
Quoc Cuong Pham 已提交
73
    { CODEC_ID_TIFF      , "tif"},
74
    { CODEC_ID_SGI       , "sgi"},
I
Ivo van Poorten 已提交
75
    { CODEC_ID_PTX       , "ptx"},
I
Ivo van Poorten 已提交
76
    { CODEC_ID_PCX       , "pcx"},
I
Ivo van Poorten 已提交
77 78 79 80 81 82 83
    { 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"},
B
Benoit Fouet 已提交
84
    { CODEC_ID_JPEG2000  , "jp2"},
85
    { CODEC_ID_DPX       , "dpx"},
86
    { CODEC_ID_PICTOR    , "pic"},
87
    { CODEC_ID_NONE      , NULL}
88 89
};

90
static const int sizes[][2] = {
M
Michael Niedermayer 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
    { 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;

106
    for(i=0;i<FF_ARRAY_ELEMS(sizes);i++) {
M
Michael Niedermayer 已提交
107 108 109 110 111 112 113 114
        if ((sizes[i][0] * sizes[i][1]) == size) {
            *width_ptr = sizes[i][0];
            *height_ptr = sizes[i][1];
            return 0;
        }
    }
    return -1;
}
115 116
static enum CodecID av_str2id(const IdStrMap *tags, const char *str)
{
M
10l  
Michael Niedermayer 已提交
117 118 119
    str= strrchr(str, '.');
    if(!str) return CODEC_ID_NONE;
    str++;
120 121

    while (tags->id) {
122 123
        if (!strcasecmp(str, tags->str))
            return tags->id;
124 125 126 127 128 129 130

        tags++;
    }
    return CODEC_ID_NONE;
}

/* return -1 if no image found */
131
static int find_image_range(int *pfirst_index, int *plast_index,
132 133 134 135 136 137 138
                            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++) {
139
        if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){
140
            *pfirst_index =
141
            *plast_index = 1;
142
            if (avio_check(buf, AVIO_FLAG_READ) > 0)
143 144
                return 0;
            return -1;
145
        }
146
        if (avio_check(buf, AVIO_FLAG_READ) > 0)
147 148 149 150
            break;
    }
    if (first_index == 5)
        goto fail;
151

152 153 154 155 156 157 158 159 160
    /* find the last image */
    last_index = first_index;
    for(;;) {
        range = 0;
        for(;;) {
            if (!range)
                range1 = 1;
            else
                range1 = 2 * range;
161 162
            if (av_get_frame_filename(buf, sizeof(buf), path,
                                      last_index + range1) < 0)
163
                goto fail;
164
            if (avio_check(buf, AVIO_FLAG_READ) <= 0)
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
                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;
}


184
static int read_probe(AVProbeData *p)
185
{
186
    if (p->filename && av_str2id(img_tags, p->filename)) {
187 188 189 190 191 192
        if (av_filename_number_test(p->filename))
            return AVPROBE_SCORE_MAX;
        else
            return AVPROBE_SCORE_MAX/2;
    }
    return 0;
193 194
}

195 196 197 198 199 200
enum CodecID ff_guess_image2_codec(const char *filename)
{
    return av_str2id(img_tags, filename);
}

#if FF_API_GUESS_IMG2_CODEC
201 202 203
enum CodecID av_guess_image2_codec(const char *filename){
    return av_str2id(img_tags, filename);
}
204
#endif
205

206
static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
207 208
{
    VideoData *s = s1->priv_data;
209 210
    int first_index, last_index, ret = 0;
    int width = 0, height = 0;
211
    AVStream *st;
212
    enum PixelFormat pix_fmt = PIX_FMT_NONE;
213
    AVRational framerate;
214 215 216 217 218

    s1->ctx_flags |= AVFMTCTX_NOHEADER;

    st = av_new_stream(s1, 0);
    if (!st) {
219
        return AVERROR(ENOMEM);
220 221
    }

222 223 224 225
    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);
    }
226 227 228 229
    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;
    }
230 231 232 233
    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;
    }
234 235 236
#if FF_API_FORMAT_PARAMETERS
    if (ap->pix_fmt != PIX_FMT_NONE)
        pix_fmt = ap->pix_fmt;
237 238 239 240
    if (ap->width > 0)
        width = ap->width;
    if (ap->height > 0)
        height = ap->height;
241 242
    if (ap->time_base.num)
        framerate = (AVRational){ap->time_base.den, ap->time_base.num};
243 244
#endif

M
Måns Rullgård 已提交
245
    av_strlcpy(s->path, s1->filename, sizeof(s->path));
246 247
    s->img_number = 0;
    s->img_count = 0;
248

249 250 251
    /* find format */
    if (s1->iformat->flags & AVFMT_NOFILE)
        s->is_pipe = 0;
M
Michael Niedermayer 已提交
252
    else{
253
        s->is_pipe = 1;
A
Aurelien Jacobs 已提交
254
        st->need_parsing = AVSTREAM_PARSE_FULL;
M
Michael Niedermayer 已提交
255
    }
256

257
    av_set_pts_info(st, 60, framerate.den, framerate.num);
258

259 260 261
    if (width && height) {
        st->codec->width  = width;
        st->codec->height = height;
M
Michael Niedermayer 已提交
262
    }
263

264 265
    if (!s->is_pipe) {
        if (find_image_range(&first_index, &last_index, s->path) < 0)
266
            return AVERROR(ENOENT);
267 268 269 270 271
        s->img_first = first_index;
        s->img_last = last_index;
        s->img_number = first_index;
        /* compute duration */
        st->start_time = 0;
272
        st->duration = last_index - first_index + 1;
273
    }
274

275
    if(s1->video_codec_id){
276
        st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
277 278
        st->codec->codec_id = s1->video_codec_id;
    }else if(s1->audio_codec_id){
279
        st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
280
        st->codec->codec_id = s1->audio_codec_id;
281
    }else{
282
        st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
283
        st->codec->codec_id = av_str2id(img_tags, s->path);
284
    }
285 286
    if(st->codec->codec_type == AVMEDIA_TYPE_VIDEO && pix_fmt != PIX_FMT_NONE)
        st->codec->pix_fmt = pix_fmt;
287 288 289 290

    return 0;
}

291
static int read_packet(AVFormatContext *s1, AVPacket *pkt)
292 293 294
{
    VideoData *s = s1->priv_data;
    char filename[1024];
M
Michael Niedermayer 已提交
295 296
    int i;
    int size[3]={0}, ret[3]={0};
297
    AVIOContext *f[3];
298
    AVCodecContext *codec= s1->streams[0]->codec;
299 300 301

    if (!s->is_pipe) {
        /* loop over input */
302
        if (s1->loop_input && s->img_number > s->img_last) {
303
            s->img_number = s->img_first;
M
Michael Niedermayer 已提交
304
        }
305 306
        if (s->img_number > s->img_last)
            return AVERROR_EOF;
307 308
        if (av_get_frame_filename(filename, sizeof(filename),
                                  s->path, s->img_number)<0 && s->img_number > 1)
309
            return AVERROR(EIO);
M
Michael Niedermayer 已提交
310
        for(i=0; i<3; i++){
311
            if (avio_open(&f[i], filename, AVIO_FLAG_READ) < 0) {
312 313
                if(i==1)
                    break;
314
                av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",filename);
315
                return AVERROR(EIO);
316
            }
A
Anton Khirnov 已提交
317
            size[i]= avio_size(f[i]);
318

M
Michael Niedermayer 已提交
319 320 321 322
            if(codec->codec_id != CODEC_ID_RAWVIDEO)
                break;
            filename[ strlen(filename) - 1 ]= 'U' + i;
        }
323

M
Michael Niedermayer 已提交
324 325
        if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width)
            infer_size(&codec->width, &codec->height, size[0]);
326
    } else {
327
        f[0] = s1->pb;
A
Anton Khirnov 已提交
328
        if (f[0]->eof_reached)
329
            return AVERROR(EIO);
M
Michael Niedermayer 已提交
330
        size[0]= 4096;
331 332
    }

M
Michael Niedermayer 已提交
333
    av_new_packet(pkt, size[0] + size[1] + size[2]);
334
    pkt->stream_index = 0;
335
    pkt->flags |= AV_PKT_FLAG_KEY;
336

M
Michael Niedermayer 已提交
337 338 339
    pkt->size= 0;
    for(i=0; i<3; i++){
        if(size[i]){
340
            ret[i]= avio_read(f[i], pkt->data + pkt->size, size[i]);
M
Michael Niedermayer 已提交
341
            if (!s->is_pipe)
342
                avio_close(f[i]);
M
Michael Niedermayer 已提交
343 344 345
            if(ret[i]>0)
                pkt->size += ret[i];
        }
346 347
    }

M
Michael Niedermayer 已提交
348
    if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) {
349
        av_free_packet(pkt);
350
        return AVERROR(EIO); /* signal EOF */
351 352 353 354 355 356 357
    } else {
        s->img_count++;
        s->img_number++;
        return 0;
    }
}

358
#if CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER
359 360 361
/******************************************************/
/* image output */

362
static int write_header(AVFormatContext *s)
363 364 365 366
{
    VideoData *img = s->priv_data;

    img->img_number = 1;
M
Måns Rullgård 已提交
367
    av_strlcpy(img->path, s->filename, sizeof(img->path));
368 369 370 371 372 373

    /* find format */
    if (s->oformat->flags & AVFMT_NOFILE)
        img->is_pipe = 0;
    else
        img->is_pipe = 1;
374

375 376 377
    return 0;
}

378
static int write_packet(AVFormatContext *s, AVPacket *pkt)
379 380
{
    VideoData *img = s->priv_data;
381
    AVIOContext *pb[3];
382
    char filename[1024];
383
    AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
M
Michael Niedermayer 已提交
384
    int i;
385 386

    if (!img->is_pipe) {
387
        if (av_get_frame_filename(filename, sizeof(filename),
388
                                  img->path, img->img_number) < 0 && img->img_number>1) {
389 390 391
            av_log(s, AV_LOG_ERROR,
                   "Could not get frame filename number %d from pattern '%s'\n",
                   img->img_number, img->path);
392
            return AVERROR(EIO);
393
        }
M
Michael Niedermayer 已提交
394
        for(i=0; i<3; i++){
395
            if (avio_open(&pb[i], filename, AVIO_FLAG_WRITE) < 0) {
396
                av_log(s, AV_LOG_ERROR, "Could not open file : %s\n",filename);
397
                return AVERROR(EIO);
398
            }
399

M
Michael Niedermayer 已提交
400 401 402 403
            if(codec->codec_id != CODEC_ID_RAWVIDEO)
                break;
            filename[ strlen(filename) - 1 ]= 'U' + i;
        }
404
    } else {
405
        pb[0] = s->pb;
406
    }
407

M
Michael Niedermayer 已提交
408
    if(codec->codec_id == CODEC_ID_RAWVIDEO){
409
        int ysize = codec->width * codec->height;
410 411 412
        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);
413 414
        avio_flush(pb[1]);
        avio_flush(pb[2]);
415 416
        avio_close(pb[1]);
        avio_close(pb[2]);
M
Michael Niedermayer 已提交
417
    }else{
418 419 420 421 422 423
        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;
424
                avio_wb32(pb[0], 12);
425
                ffio_wfourcc(pb[0], "jP  ");
426 427
                avio_wb32(pb[0], 0x0D0A870A); // signature
                avio_wb32(pb[0], 20);
428 429
                ffio_wfourcc(pb[0], "ftyp");
                ffio_wfourcc(pb[0], "jp2 ");
430
                avio_wb32(pb[0], 0);
431
                ffio_wfourcc(pb[0], "jp2 ");
432
                avio_write(pb[0], st->codec->extradata, st->codec->extradata_size);
433 434 435 436 437 438 439 440
            }else if(pkt->size < 8 ||
                     (!st->codec->extradata_size &&
                      AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature
            error:
                av_log(s, AV_LOG_ERROR, "malformated jpeg2000 codestream\n");
                return -1;
            }
        }
441
        avio_write(pb[0], pkt->data, pkt->size);
M
Michael Niedermayer 已提交
442
    }
443
    avio_flush(pb[0]);
444
    if (!img->is_pipe) {
445
        avio_close(pb[0]);
446 447 448 449 450 451
    }

    img->img_number++;
    return 0;
}

452
#endif /* CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER */
453

454 455 456 457
#define OFFSET(x) offsetof(VideoData, x)
#define DEC AV_OPT_FLAG_DECODING_PARAM
static const AVOption options[] = {
    { "pixel_format", "", OFFSET(pixel_format), FF_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
458
    { "video_size",   "", OFFSET(video_size),   FF_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
459
    { "framerate",    "", OFFSET(framerate),    FF_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC },
460 461 462 463 464 465 466 467 468 469
    { NULL },
};

static const AVClass img2_class = {
    .class_name = "image2 demuxer",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
};

470
/* input */
471
#if CONFIG_IMAGE2_DEMUXER
472
AVInputFormat ff_image2_demuxer = {
473 474
    .name           = "image2",
    .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
475
    .priv_data_size = sizeof(VideoData),
476 477 478 479
    .read_probe     = read_probe,
    .read_header    = read_header,
    .read_packet    = read_packet,
    .flags          = AVFMT_NOFILE,
480
    .priv_class     = &img2_class,
481
};
482
#endif
483
#if CONFIG_IMAGE2PIPE_DEMUXER
484
AVInputFormat ff_image2pipe_demuxer = {
485 486
    .name           = "image2pipe",
    .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
487
    .priv_data_size = sizeof(VideoData),
488 489
    .read_header    = read_header,
    .read_packet    = read_packet,
490
    .priv_class     = &img2_class,
491
};
492
#endif
493 494

/* output */
495
#if CONFIG_IMAGE2_MUXER
496
AVOutputFormat ff_image2_muxer = {
497 498
    .name           = "image2",
    .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
499
    .extensions     = "bmp,dpx,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
500
                      "ppm,sgi,tga,tif,tiff,jp2",
501
    .priv_data_size = sizeof(VideoData),
502 503 504 505
    .video_codec    = CODEC_ID_MJPEG,
    .write_header   = write_header,
    .write_packet   = write_packet,
    .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE
506
};
507
#endif
508
#if CONFIG_IMAGE2PIPE_MUXER
509
AVOutputFormat ff_image2pipe_muxer = {
510 511
    .name           = "image2pipe",
    .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
512
    .priv_data_size = sizeof(VideoData),
513 514 515 516
    .video_codec    = CODEC_ID_MJPEG,
    .write_header   = write_header,
    .write_packet   = write_packet,
    .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
517
};
518
#endif