libavformat/img2.c
03cfe134
 /*
  * Image format
406792e7
  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
03cfe134
  * Copyright (c) 2004 Michael Niedermayer
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
03cfe134
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
03cfe134
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
03cfe134
  * 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
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
03cfe134
  */
245976da
 
c91662ce
 #include "libavutil/intreadwrite.h"
245976da
 #include "libavutil/avstring.h"
03cfe134
 #include "avformat.h"
3375a6a5
 #include <strings.h>
03cfe134
 
 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"},
4eff7cf4
     { CODEC_ID_PNG       , "png"},
042e0add
     { CODEC_ID_PNG       , "mng"},
5b6d5596
     { CODEC_ID_PPM       , "ppm"},
485cfbe8
     { CODEC_ID_PPM       , "pnm"},
5b6d5596
     { CODEC_ID_PGM       , "pgm"},
     { CODEC_ID_PGMYUV    , "pgmyuv"},
     { CODEC_ID_PBM       , "pbm"},
     { CODEC_ID_PAM       , "pam"},
03cfe134
     { CODEC_ID_MPEG1VIDEO, "mpg1-img"},
     { CODEC_ID_MPEG2VIDEO, "mpg2-img"},
     { CODEC_ID_MPEG4     , "mpg4-img"},
     { CODEC_ID_FFV1      , "ffv1-img"},
55cf1959
     { CODEC_ID_RAWVIDEO  , "y"},
9fa62f2a
     { CODEC_ID_BMP       , "bmp"},
6f9e492a
     { CODEC_ID_GIF       , "gif"},
79f7c32f
     { CODEC_ID_TARGA     , "tga"},
     { CODEC_ID_TIFF      , "tiff"},
dd0f776c
     { CODEC_ID_TIFF      , "tif"},
2d99eed1
     { CODEC_ID_SGI       , "sgi"},
8d2fb333
     { CODEC_ID_PTX       , "ptx"},
b4abe1d1
     { CODEC_ID_PCX       , "pcx"},
d43df959
     { 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"},
8b2386dc
     { CODEC_ID_JPEG2000  , "jp2"},
d9133126
     { CODEC_ID_NONE      , NULL}
03cfe134
 };
 
aecf157e
 static const int sizes[][2] = {
55cf1959
     { 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;
 
37d3e066
     for(i=0;i<FF_ARRAY_ELEMS(sizes);i++) {
55cf1959
         if ((sizes[i][0] * sizes[i][1]) == size) {
             *width_ptr = sizes[i][0];
             *height_ptr = sizes[i][1];
             return 0;
         }
     }
     return -1;
 }
03cfe134
 static enum CodecID av_str2id(const IdStrMap *tags, const char *str)
 {
3ed02129
     str= strrchr(str, '.');
     if(!str) return CODEC_ID_NONE;
     str++;
03cfe134
 
     while (tags->id) {
3375a6a5
         if (!strcasecmp(str, tags->str))
             return tags->id;
03cfe134
 
         tags++;
     }
     return CODEC_ID_NONE;
 }
 
 /* return -1 if no image found */
115329f1
 static int find_image_range(int *pfirst_index, int *plast_index,
03cfe134
                             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++) {
5c07cf53
         if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){
115329f1
             *pfirst_index =
61fb3183
             *plast_index = 1;
             return 0;
         }
03cfe134
         if (url_exist(buf))
             break;
     }
     if (first_index == 5)
         goto fail;
115329f1
 
03cfe134
     /* find the last image */
     last_index = first_index;
     for(;;) {
         range = 0;
         for(;;) {
             if (!range)
                 range1 = 1;
             else
                 range1 = 2 * range;
5c07cf53
             if (av_get_frame_filename(buf, sizeof(buf), path,
                                       last_index + range1) < 0)
03cfe134
                 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)
 {
e825b500
     if (p->filename && av_str2id(img_tags, p->filename)) {
d1e8675c
         if (av_filename_number_test(p->filename))
             return AVPROBE_SCORE_MAX;
         else
             return AVPROBE_SCORE_MAX/2;
     }
     return 0;
03cfe134
 }
 
5b6d5596
 enum CodecID av_guess_image2_codec(const char *filename){
     return av_str2id(img_tags, filename);
 }
 
03cfe134
 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) {
8fa36ae0
         return AVERROR(ENOMEM);
03cfe134
     }
 
75e61b0e
     av_strlcpy(s->path, s1->filename, sizeof(s->path));
03cfe134
     s->img_number = 0;
     s->img_count = 0;
115329f1
 
03cfe134
     /* find format */
     if (s1->iformat->flags & AVFMT_NOFILE)
         s->is_pipe = 0;
146210ca
     else{
03cfe134
         s->is_pipe = 1;
57004ff1
         st->need_parsing = AVSTREAM_PARSE_FULL;
146210ca
     }
115329f1
 
c04c3282
     if (!ap->time_base.num) {
c0df9d75
         av_set_pts_info(st, 60, 1, 25);
03cfe134
     } else {
c0df9d75
         av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den);
03cfe134
     }
115329f1
 
c04c3282
     if(ap->width && ap->height){
01f4895c
         st->codec->width = ap->width;
         st->codec->height= ap->height;
55cf1959
     }
115329f1
 
03cfe134
     if (!s->is_pipe) {
         if (find_image_range(&first_index, &last_index, s->path) < 0)
6f3e0b21
             return AVERROR(EIO);
03cfe134
         s->img_first = first_index;
         s->img_last = last_index;
         s->img_number = first_index;
         /* compute duration */
         st->start_time = 0;
c0df9d75
         st->duration = last_index - first_index + 1;
03cfe134
     }
115329f1
 
5b6d5596
     if(ap->video_codec_id){
01f4895c
         st->codec->codec_type = CODEC_TYPE_VIDEO;
         st->codec->codec_id = ap->video_codec_id;
5b6d5596
     }else if(ap->audio_codec_id){
01f4895c
         st->codec->codec_type = CODEC_TYPE_AUDIO;
         st->codec->codec_id = ap->audio_codec_id;
5b6d5596
     }else{
01f4895c
         st->codec->codec_type = CODEC_TYPE_VIDEO;
         st->codec->codec_id = av_str2id(img_tags, s->path);
5b6d5596
     }
01f4895c
     if(st->codec->codec_type == CODEC_TYPE_VIDEO && ap->pix_fmt != PIX_FMT_NONE)
         st->codec->pix_fmt = ap->pix_fmt;
03cfe134
 
     return 0;
 }
 
 static int img_read_packet(AVFormatContext *s1, AVPacket *pkt)
 {
     VideoData *s = s1->priv_data;
     char filename[1024];
55cf1959
     int i;
     int size[3]={0}, ret[3]={0};
899681cd
     ByteIOContext *f[3];
01f4895c
     AVCodecContext *codec= s1->streams[0]->codec;
03cfe134
 
     if (!s->is_pipe) {
         /* loop over input */
5894e1bb
         if (s1->loop_input && s->img_number > s->img_last) {
03cfe134
             s->img_number = s->img_first;
b339fb00
         }
5c07cf53
         if (av_get_frame_filename(filename, sizeof(filename),
                                   s->path, s->img_number)<0 && s->img_number > 1)
6f3e0b21
             return AVERROR(EIO);
55cf1959
         for(i=0; i<3; i++){
899681cd
             if (url_fopen(&f[i], filename, URL_RDONLY) < 0)
6f3e0b21
                 return AVERROR(EIO);
a965c478
             size[i]= url_fsize(f[i]);
115329f1
 
55cf1959
             if(codec->codec_id != CODEC_ID_RAWVIDEO)
                 break;
             filename[ strlen(filename) - 1 ]= 'U' + i;
         }
115329f1
 
55cf1959
         if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width)
             infer_size(&codec->width, &codec->height, size[0]);
03cfe134
     } else {
899681cd
         f[0] = s1->pb;
55cf1959
         if (url_feof(f[0]))
6f3e0b21
             return AVERROR(EIO);
55cf1959
         size[0]= 4096;
03cfe134
     }
 
55cf1959
     av_new_packet(pkt, size[0] + size[1] + size[2]);
03cfe134
     pkt->stream_index = 0;
     pkt->flags |= PKT_FLAG_KEY;
 
55cf1959
     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];
         }
03cfe134
     }
 
55cf1959
     if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) {
03cfe134
         av_free_packet(pkt);
6f3e0b21
         return AVERROR(EIO); /* signal EOF */
03cfe134
     } else {
         s->img_count++;
         s->img_number++;
         return 0;
     }
 }
 
b250f9c6
 #if CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER
03cfe134
 /******************************************************/
 /* image output */
 
 static int img_write_header(AVFormatContext *s)
 {
     VideoData *img = s->priv_data;
 
     img->img_number = 1;
75e61b0e
     av_strlcpy(img->path, s->filename, sizeof(img->path));
03cfe134
 
     /* find format */
     if (s->oformat->flags & AVFMT_NOFILE)
         img->is_pipe = 0;
     else
         img->is_pipe = 1;
115329f1
 
03cfe134
     return 0;
 }
 
 static int img_write_packet(AVFormatContext *s, AVPacket *pkt)
 {
     VideoData *img = s->priv_data;
899681cd
     ByteIOContext *pb[3];
03cfe134
     char filename[1024];
01f4895c
     AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
55cf1959
     int i;
03cfe134
 
     if (!img->is_pipe) {
5c07cf53
         if (av_get_frame_filename(filename, sizeof(filename),
                                   img->path, img->img_number) < 0 && img->img_number>1)
6f3e0b21
             return AVERROR(EIO);
55cf1959
         for(i=0; i<3; i++){
899681cd
             if (url_fopen(&pb[i], filename, URL_WRONLY) < 0)
6f3e0b21
                 return AVERROR(EIO);
115329f1
 
55cf1959
             if(codec->codec_id != CODEC_ID_RAWVIDEO)
                 break;
             filename[ strlen(filename) - 1 ]= 'U' + i;
         }
03cfe134
     } else {
899681cd
         pb[0] = s->pb;
03cfe134
     }
115329f1
 
55cf1959
     if(codec->codec_id == CODEC_ID_RAWVIDEO){
2c34596f
         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);
55cf1959
         put_flush_packet(pb[1]);
         put_flush_packet(pb[2]);
         url_fclose(pb[1]);
         url_fclose(pb[2]);
     }else{
b4097b13
         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;
                 put_be32(pb[0], 12);
                 put_tag (pb[0], "jP  ");
                 put_be32(pb[0], 0x0D0A870A); // signature
                 put_be32(pb[0], 20);
                 put_tag (pb[0], "ftyp");
                 put_tag (pb[0], "jp2 ");
                 put_be32(pb[0], 0);
                 put_tag (pb[0], "jp2 ");
                 put_buffer(pb[0], st->codec->extradata, st->codec->extradata_size);
             }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;
             }
         }
55cf1959
         put_buffer(pb[0], pkt->data, pkt->size);
     }
     put_flush_packet(pb[0]);
03cfe134
     if (!img->is_pipe) {
55cf1959
         url_fclose(pb[0]);
03cfe134
     }
 
     img->img_number++;
     return 0;
 }
 
b250f9c6
 #endif /* CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER */
8228bff5
 
03cfe134
 /* input */
b250f9c6
 #if CONFIG_IMAGE2_DEMUXER
ff70e601
 AVInputFormat image2_demuxer = {
03cfe134
     "image2",
bde15e74
     NULL_IF_CONFIG_SMALL("image2 sequence"),
03cfe134
     sizeof(VideoData),
     image_probe,
     img_read_header,
     img_read_packet,
bea91b8c
     NULL,
03cfe134
     NULL,
     NULL,
61fb3183
     AVFMT_NOFILE,
03cfe134
 };
ff70e601
 #endif
b250f9c6
 #if CONFIG_IMAGE2PIPE_DEMUXER
ff70e601
 AVInputFormat image2pipe_demuxer = {
03cfe134
     "image2pipe",
bde15e74
     NULL_IF_CONFIG_SMALL("piped image2 sequence"),
03cfe134
     sizeof(VideoData),
     NULL, /* no probe */
     img_read_header,
     img_read_packet,
 };
ff70e601
 #endif
03cfe134
 
 /* output */
b250f9c6
 #if CONFIG_IMAGE2_MUXER
ff70e601
 AVOutputFormat image2_muxer = {
03cfe134
     "image2",
bde15e74
     NULL_IF_CONFIG_SMALL("image2 sequence"),
03cfe134
     "",
b4097b13
     "bmp,jpeg,jpg,ljpg,pam,pbm,pgm,pgmyuv,png,ppm,sgi,tif,tiff,jp2",
03cfe134
     sizeof(VideoData),
     CODEC_ID_NONE,
     CODEC_ID_MJPEG,
     img_write_header,
     img_write_packet,
82213f68
     NULL,
644b0c4c
     .flags= AVFMT_NOTIMESTAMPS | AVFMT_NOFILE
03cfe134
 };
ff70e601
 #endif
b250f9c6
 #if CONFIG_IMAGE2PIPE_MUXER
ff70e601
 AVOutputFormat image2pipe_muxer = {
03cfe134
     "image2pipe",
bde15e74
     NULL_IF_CONFIG_SMALL("piped image2 sequence"),
03cfe134
     "",
     "",
     sizeof(VideoData),
     CODEC_ID_NONE,
     CODEC_ID_MJPEG,
     img_write_header,
     img_write_packet,
644b0c4c
     .flags= AVFMT_NOTIMESTAMPS
03cfe134
 };
8228bff5
 #endif