img2.c 11 KB
Newer Older
1 2 3 4 5
/*
 * Image format
 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
 * Copyright (c) 2004 Michael Niedermayer
 *
6 7 8
 * This file is part of FFmpeg.
 *
 * FFmpeg 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
 * FFmpeg 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 FFmpeg; 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/avstring.h"
24
#include "avformat.h"
25
#include <strings.h>
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44

typedef struct {
    int img_first;
    int img_last;
    int img_number;
    int img_count;
    int is_pipe;
    char path[1024];
} VideoData;

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

static const IdStrMap img_tags[] = {
    { CODEC_ID_MJPEG     , "jpeg"},
    { CODEC_ID_MJPEG     , "jpg"},
    { CODEC_ID_LJPEG     , "ljpg"},
45
    { CODEC_ID_PNG       , "png"},
46
    { CODEC_ID_PNG       , "mng"},
47 48 49 50 51
    { CODEC_ID_PPM       , "ppm"},
    { CODEC_ID_PGM       , "pgm"},
    { CODEC_ID_PGMYUV    , "pgmyuv"},
    { CODEC_ID_PBM       , "pbm"},
    { CODEC_ID_PAM       , "pam"},
52 53 54 55
    { CODEC_ID_MPEG1VIDEO, "mpg1-img"},
    { CODEC_ID_MPEG2VIDEO, "mpg2-img"},
    { CODEC_ID_MPEG4     , "mpg4-img"},
    { CODEC_ID_FFV1      , "ffv1-img"},
56
    { CODEC_ID_RAWVIDEO  , "y"},
Måns Rullgård's avatar
Måns Rullgård committed
57
    { CODEC_ID_BMP       , "bmp"},
Baptiste Coudurier's avatar
Baptiste Coudurier committed
58
    { CODEC_ID_GIF       , "gif"},
59 60
    { CODEC_ID_TARGA     , "tga"},
    { CODEC_ID_TIFF      , "tiff"},
61
    { CODEC_ID_TIFF      , "tif"},
62
    { CODEC_ID_SGI       , "sgi"},
Ivo van Poorten's avatar
Ivo van Poorten committed
63
    { CODEC_ID_PTX       , "ptx"},
64
    { CODEC_ID_PCX       , "pcx"},
Ivo van Poorten's avatar
Ivo van Poorten committed
65 66 67 68 69 70 71
    { 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"},
72
    { CODEC_ID_NONE      , NULL}
73 74
};

75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
static int sizes[][2] = {
    { 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;

    for(i=0;i<sizeof(sizes)/sizeof(sizes[0]);i++) {
        if ((sizes[i][0] * sizes[i][1]) == size) {
            *width_ptr = sizes[i][0];
            *height_ptr = sizes[i][1];
            return 0;
        }
    }
    return -1;
}
100 101
static enum CodecID av_str2id(const IdStrMap *tags, const char *str)
{
Michael Niedermayer's avatar
Michael Niedermayer committed
102 103 104
    str= strrchr(str, '.');
    if(!str) return CODEC_ID_NONE;
    str++;
105 106

    while (tags->id) {
107 108
        if (!strcasecmp(str, tags->str))
            return tags->id;
109 110 111 112 113 114 115

        tags++;
    }
    return CODEC_ID_NONE;
}

/* return -1 if no image found */
116
static int find_image_range(int *pfirst_index, int *plast_index,
117 118 119 120 121 122 123
                            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++) {
124
        if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){
125
            *pfirst_index =
126 127 128
            *plast_index = 1;
            return 0;
        }
129 130 131 132 133
        if (url_exist(buf))
            break;
    }
    if (first_index == 5)
        goto fail;
134

135 136 137 138 139 140 141 142 143
    /* find the last image */
    last_index = first_index;
    for(;;) {
        range = 0;
        for(;;) {
            if (!range)
                range1 = 1;
            else
                range1 = 2 * range;
144 145
            if (av_get_frame_filename(buf, sizeof(buf), path,
                                      last_index + range1) < 0)
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
                goto fail;
            if (!url_exist(buf))
                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;
}


static int image_probe(AVProbeData *p)
{
169
    if (p->filename && av_str2id(img_tags, p->filename)) {
170 171 172 173 174 175
        if (av_filename_number_test(p->filename))
            return AVPROBE_SCORE_MAX;
        else
            return AVPROBE_SCORE_MAX/2;
    }
    return 0;
176 177
}

178 179 180 181
enum CodecID av_guess_image2_codec(const char *filename){
    return av_str2id(img_tags, filename);
}

182 183 184 185 186 187 188 189 190 191
static int img_read_header(AVFormatContext *s1, AVFormatParameters *ap)
{
    VideoData *s = s1->priv_data;
    int first_index, last_index;
    AVStream *st;

    s1->ctx_flags |= AVFMTCTX_NOHEADER;

    st = av_new_stream(s1, 0);
    if (!st) {
192
        return AVERROR(ENOMEM);
193 194
    }

195
    av_strlcpy(s->path, s1->filename, sizeof(s->path));
196 197
    s->img_number = 0;
    s->img_count = 0;
198

199 200 201
    /* find format */
    if (s1->iformat->flags & AVFMT_NOFILE)
        s->is_pipe = 0;
Michael Niedermayer's avatar
Michael Niedermayer committed
202
    else{
203
        s->is_pipe = 1;
204
        st->need_parsing = AVSTREAM_PARSE_FULL;
Michael Niedermayer's avatar
Michael Niedermayer committed
205
    }
206

207
    if (!ap->time_base.num) {
208
        av_set_pts_info(st, 60, 1, 25);
209
    } else {
210
        av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den);
211
    }
212

213
    if(ap->width && ap->height){
214 215
        st->codec->width = ap->width;
        st->codec->height= ap->height;
216
    }
217

218 219
    if (!s->is_pipe) {
        if (find_image_range(&first_index, &last_index, s->path) < 0)
220
            return AVERROR(EIO);
221 222 223 224 225
        s->img_first = first_index;
        s->img_last = last_index;
        s->img_number = first_index;
        /* compute duration */
        st->start_time = 0;
226
        st->duration = last_index - first_index + 1;
227
    }
228

229
    if(ap->video_codec_id){
230 231
        st->codec->codec_type = CODEC_TYPE_VIDEO;
        st->codec->codec_id = ap->video_codec_id;
232
    }else if(ap->audio_codec_id){
233 234
        st->codec->codec_type = CODEC_TYPE_AUDIO;
        st->codec->codec_id = ap->audio_codec_id;
235
    }else{
236 237
        st->codec->codec_type = CODEC_TYPE_VIDEO;
        st->codec->codec_id = av_str2id(img_tags, s->path);
238
    }
239 240
    if(st->codec->codec_type == CODEC_TYPE_VIDEO && ap->pix_fmt != PIX_FMT_NONE)
        st->codec->pix_fmt = ap->pix_fmt;
241 242 243 244 245 246 247 248

    return 0;
}

static int img_read_packet(AVFormatContext *s1, AVPacket *pkt)
{
    VideoData *s = s1->priv_data;
    char filename[1024];
249 250
    int i;
    int size[3]={0}, ret[3]={0};
251
    ByteIOContext *f[3];
252
    AVCodecContext *codec= s1->streams[0]->codec;
253 254 255

    if (!s->is_pipe) {
        /* loop over input */
256
        if (s1->loop_input && s->img_number > s->img_last) {
257
            s->img_number = s->img_first;
Michael Niedermayer's avatar
Michael Niedermayer committed
258
        }
259 260
        if (av_get_frame_filename(filename, sizeof(filename),
                                  s->path, s->img_number)<0 && s->img_number > 1)
261
            return AVERROR(EIO);
262
        for(i=0; i<3; i++){
263
            if (url_fopen(&f[i], filename, URL_RDONLY) < 0)
264
                return AVERROR(EIO);
265
            size[i]= url_fsize(f[i]);
266

267 268 269 270
            if(codec->codec_id != CODEC_ID_RAWVIDEO)
                break;
            filename[ strlen(filename) - 1 ]= 'U' + i;
        }
271

272 273
        if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width)
            infer_size(&codec->width, &codec->height, size[0]);
274
    } else {
275
        f[0] = s1->pb;
276
        if (url_feof(f[0]))
277
            return AVERROR(EIO);
278
        size[0]= 4096;
279 280
    }

281
    av_new_packet(pkt, size[0] + size[1] + size[2]);
282 283 284
    pkt->stream_index = 0;
    pkt->flags |= PKT_FLAG_KEY;

285 286 287 288 289 290 291 292 293
    pkt->size= 0;
    for(i=0; i<3; i++){
        if(size[i]){
            ret[i]= get_buffer(f[i], pkt->data + pkt->size, size[i]);
            if (!s->is_pipe)
                url_fclose(f[i]);
            if(ret[i]>0)
                pkt->size += ret[i];
        }
294 295
    }

296
    if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) {
297
        av_free_packet(pkt);
298
        return AVERROR(EIO); /* signal EOF */
299 300 301 302 303 304 305
    } else {
        s->img_count++;
        s->img_number++;
        return 0;
    }
}

306
#ifdef CONFIG_MUXERS
307 308 309 310 311 312 313 314
/******************************************************/
/* image output */

static int img_write_header(AVFormatContext *s)
{
    VideoData *img = s->priv_data;

    img->img_number = 1;
315
    av_strlcpy(img->path, s->filename, sizeof(img->path));
316 317 318 319 320 321

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

323 324 325 326 327 328
    return 0;
}

static int img_write_packet(AVFormatContext *s, AVPacket *pkt)
{
    VideoData *img = s->priv_data;
329
    ByteIOContext *pb[3];
330
    char filename[1024];
331
    AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
332
    int i;
333 334

    if (!img->is_pipe) {
335 336
        if (av_get_frame_filename(filename, sizeof(filename),
                                  img->path, img->img_number) < 0 && img->img_number>1)
337
            return AVERROR(EIO);
338
        for(i=0; i<3; i++){
339
            if (url_fopen(&pb[i], filename, URL_WRONLY) < 0)
340
                return AVERROR(EIO);
341

342 343 344 345
            if(codec->codec_id != CODEC_ID_RAWVIDEO)
                break;
            filename[ strlen(filename) - 1 ]= 'U' + i;
        }
346
    } else {
347
        pb[0] = s->pb;
348
    }
349

350
    if(codec->codec_id == CODEC_ID_RAWVIDEO){
351 352 353 354
        int ysize = codec->width * codec->height;
        put_buffer(pb[0], pkt->data        , ysize);
        put_buffer(pb[1], pkt->data + ysize, (pkt->size - ysize)/2);
        put_buffer(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2);
355 356 357 358 359 360 361 362
        put_flush_packet(pb[1]);
        put_flush_packet(pb[2]);
        url_fclose(pb[1]);
        url_fclose(pb[2]);
    }else{
        put_buffer(pb[0], pkt->data, pkt->size);
    }
    put_flush_packet(pb[0]);
363
    if (!img->is_pipe) {
364
        url_fclose(pb[0]);
365 366 367 368 369 370
    }

    img->img_number++;
    return 0;
}

371 372
#endif /* CONFIG_MUXERS */

373
/* input */
374 375
#ifdef CONFIG_IMAGE2_DEMUXER
AVInputFormat image2_demuxer = {
376
    "image2",
377
    NULL_IF_CONFIG_SMALL("image2 sequence"),
378 379 380 381
    sizeof(VideoData),
    image_probe,
    img_read_header,
    img_read_packet,
382
    NULL,
383 384
    NULL,
    NULL,
385
    AVFMT_NOFILE,
386
};
387 388 389
#endif
#ifdef CONFIG_IMAGE2PIPE_DEMUXER
AVInputFormat image2pipe_demuxer = {
390
    "image2pipe",
391
    NULL_IF_CONFIG_SMALL("piped image2 sequence"),
392 393 394 395 396
    sizeof(VideoData),
    NULL, /* no probe */
    img_read_header,
    img_read_packet,
};
397
#endif
398 399

/* output */
400 401
#ifdef CONFIG_IMAGE2_MUXER
AVOutputFormat image2_muxer = {
402
    "image2",
403
    NULL_IF_CONFIG_SMALL("image2 sequence"),
404 405 406 407 408 409 410
    "",
    "",
    sizeof(VideoData),
    CODEC_ID_NONE,
    CODEC_ID_MJPEG,
    img_write_header,
    img_write_packet,
411
    NULL,
412
    AVFMT_NOFILE,
413
};
414 415 416
#endif
#ifdef CONFIG_IMAGE2PIPE_MUXER
AVOutputFormat image2pipe_muxer = {
417
    "image2pipe",
418
    NULL_IF_CONFIG_SMALL("piped image2 sequence"),
419 420 421 422 423 424 425 426
    "",
    "",
    sizeof(VideoData),
    CODEC_ID_NONE,
    CODEC_ID_MJPEG,
    img_write_header,
    img_write_packet,
};
427
#endif