]> git.sesse.net Git - ffmpeg/blob - libavformat/img2.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / img2.c
1 /*
2  * Image format
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  * Copyright (c) 2004 Michael Niedermayer
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * 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  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * 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/intreadwrite.h"
24 #include "libavutil/avstring.h"
25 #include "libavutil/log.h"
26 #include "libavutil/opt.h"
27 #include "libavutil/pixdesc.h"
28 #include "libavutil/parseutils.h"
29 #include "avformat.h"
30 #include "avio_internal.h"
31 #include "internal.h"
32
33 typedef struct {
34     const AVClass *class;  /**< Class for private options. */
35     int img_first;
36     int img_last;
37     int img_number;
38     int img_count;
39     int is_pipe;
40     int split_planes;  /**< use independent file for each Y, U, V plane */
41     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     int loop;
46 } VideoData;
47
48 typedef struct {
49     enum CodecID id;
50     const char *str;
51 } IdStrMap;
52
53 static const IdStrMap img_tags[] = {
54     { CODEC_ID_MJPEG     , "jpeg"},
55     { CODEC_ID_MJPEG     , "jpg"},
56     { CODEC_ID_LJPEG     , "ljpg"},
57     { CODEC_ID_JPEGLS    , "jls"},
58     { CODEC_ID_PNG       , "png"},
59     { CODEC_ID_PNG       , "mng"},
60     { CODEC_ID_PPM       , "ppm"},
61     { CODEC_ID_PPM       , "pnm"},
62     { CODEC_ID_PGM       , "pgm"},
63     { CODEC_ID_PGMYUV    , "pgmyuv"},
64     { CODEC_ID_PBM       , "pbm"},
65     { CODEC_ID_PAM       , "pam"},
66     { CODEC_ID_MPEG1VIDEO, "mpg1-img"},
67     { CODEC_ID_MPEG2VIDEO, "mpg2-img"},
68     { CODEC_ID_MPEG4     , "mpg4-img"},
69     { CODEC_ID_FFV1      , "ffv1-img"},
70     { CODEC_ID_RAWVIDEO  , "y"},
71     { CODEC_ID_RAWVIDEO  , "raw"},
72     { CODEC_ID_BMP       , "bmp"},
73     { CODEC_ID_GIF       , "gif"},
74     { CODEC_ID_TARGA     , "tga"},
75     { CODEC_ID_TIFF      , "tiff"},
76     { CODEC_ID_TIFF      , "tif"},
77     { CODEC_ID_SGI       , "sgi"},
78     { CODEC_ID_PTX       , "ptx"},
79     { CODEC_ID_PCX       , "pcx"},
80     { CODEC_ID_SUNRAST   , "sun"},
81     { CODEC_ID_SUNRAST   , "ras"},
82     { CODEC_ID_SUNRAST   , "rs"},
83     { CODEC_ID_SUNRAST   , "im1"},
84     { CODEC_ID_SUNRAST   , "im8"},
85     { CODEC_ID_SUNRAST   , "im24"},
86     { CODEC_ID_SUNRAST   , "sunras"},
87     { CODEC_ID_JPEG2000  , "j2k"},
88     { CODEC_ID_JPEG2000  , "jp2"},
89     { CODEC_ID_JPEG2000  , "jpc"},
90     { CODEC_ID_DPX       , "dpx"},
91     { CODEC_ID_PICTOR    , "pic"},
92     { CODEC_ID_NONE      , NULL}
93 };
94
95 static const int sizes[][2] = {
96     { 640, 480 },
97     { 720, 480 },
98     { 720, 576 },
99     { 352, 288 },
100     { 352, 240 },
101     { 160, 128 },
102     { 512, 384 },
103     { 640, 352 },
104     { 640, 240 },
105 };
106
107 static int infer_size(int *width_ptr, int *height_ptr, int size)
108 {
109     int i;
110
111     for(i=0;i<FF_ARRAY_ELEMS(sizes);i++) {
112         if ((sizes[i][0] * sizes[i][1]) == size) {
113             *width_ptr = sizes[i][0];
114             *height_ptr = sizes[i][1];
115             return 0;
116         }
117     }
118     return -1;
119 }
120 static enum CodecID av_str2id(const IdStrMap *tags, const char *str)
121 {
122     str= strrchr(str, '.');
123     if(!str) return CODEC_ID_NONE;
124     str++;
125
126     while (tags->id) {
127         if (!av_strcasecmp(str, tags->str))
128             return tags->id;
129
130         tags++;
131     }
132     return CODEC_ID_NONE;
133 }
134
135 /* return -1 if no image found */
136 static int find_image_range(int *pfirst_index, int *plast_index,
137                             const char *path)
138 {
139     char buf[1024];
140     int range, last_index, range1, first_index;
141
142     /* find the first image */
143     for(first_index = 0; first_index < 5; first_index++) {
144         if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){
145             *pfirst_index =
146             *plast_index = 1;
147             if (avio_check(buf, AVIO_FLAG_READ) > 0)
148                 return 0;
149             return -1;
150         }
151         if (avio_check(buf, AVIO_FLAG_READ) > 0)
152             break;
153     }
154     if (first_index == 5)
155         goto fail;
156
157     /* find the last image */
158     last_index = first_index;
159     for(;;) {
160         range = 0;
161         for(;;) {
162             if (!range)
163                 range1 = 1;
164             else
165                 range1 = 2 * range;
166             if (av_get_frame_filename(buf, sizeof(buf), path,
167                                       last_index + range1) < 0)
168                 goto fail;
169             if (avio_check(buf, AVIO_FLAG_READ) <= 0)
170                 break;
171             range = range1;
172             /* just in case... */
173             if (range >= (1 << 30))
174                 goto fail;
175         }
176         /* we are sure than image last_index + range exists */
177         if (!range)
178             break;
179         last_index += range;
180     }
181     *pfirst_index = first_index;
182     *plast_index = last_index;
183     return 0;
184  fail:
185     return -1;
186 }
187
188
189 static int read_probe(AVProbeData *p)
190 {
191     if (p->filename && av_str2id(img_tags, p->filename)) {
192         if (av_filename_number_test(p->filename))
193             return AVPROBE_SCORE_MAX;
194         else
195             return AVPROBE_SCORE_MAX/2;
196     }
197     return 0;
198 }
199
200 enum CodecID ff_guess_image2_codec(const char *filename)
201 {
202     return av_str2id(img_tags, filename);
203 }
204
205 #if FF_API_GUESS_IMG2_CODEC
206 enum CodecID av_guess_image2_codec(const char *filename){
207     return av_str2id(img_tags, filename);
208 }
209 #endif
210
211 static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
212 {
213     VideoData *s = s1->priv_data;
214     int first_index, last_index, ret = 0;
215     int width = 0, height = 0;
216     AVStream *st;
217     enum PixelFormat pix_fmt = PIX_FMT_NONE;
218     AVRational framerate;
219
220     s1->ctx_flags |= AVFMTCTX_NOHEADER;
221
222     st = avformat_new_stream(s1, NULL);
223     if (!st) {
224         return AVERROR(ENOMEM);
225     }
226
227     if (s->pixel_format && (pix_fmt = av_get_pix_fmt(s->pixel_format)) == PIX_FMT_NONE) {
228         av_log(s1, AV_LOG_ERROR, "No such pixel format: %s.\n", s->pixel_format);
229         return AVERROR(EINVAL);
230     }
231     if (s->video_size && (ret = av_parse_video_size(&width, &height, s->video_size)) < 0) {
232         av_log(s, AV_LOG_ERROR, "Could not parse video size: %s.\n", s->video_size);
233         return ret;
234     }
235     if ((ret = av_parse_video_rate(&framerate, s->framerate)) < 0) {
236         av_log(s, AV_LOG_ERROR, "Could not parse framerate: %s.\n", s->framerate);
237         return ret;
238     }
239
240 #if FF_API_LOOP_INPUT
241     if (s1->loop_input)
242         s->loop = s1->loop_input;
243 #endif
244
245     av_strlcpy(s->path, s1->filename, sizeof(s->path));
246     s->img_number = 0;
247     s->img_count = 0;
248
249     /* find format */
250     if (s1->iformat->flags & AVFMT_NOFILE)
251         s->is_pipe = 0;
252     else{
253         s->is_pipe = 1;
254         st->need_parsing = AVSTREAM_PARSE_FULL;
255     }
256
257     av_set_pts_info(st, 60, framerate.den, framerate.num);
258
259     if (width && height) {
260         st->codec->width  = width;
261         st->codec->height = height;
262     }
263
264     if (!s->is_pipe) {
265         if (find_image_range(&first_index, &last_index, s->path) < 0)
266             return AVERROR(ENOENT);
267         s->img_first = first_index;
268         s->img_last = last_index;
269         s->img_number = first_index;
270         /* compute duration */
271         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         st->codec->codec_id = s1->video_codec_id;
278     }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         const char *str= strrchr(s->path, '.');
283         s->split_planes = str && !av_strcasecmp(str + 1, "y");
284         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
285         st->codec->codec_id = av_str2id(img_tags, s->path);
286     }
287     if(st->codec->codec_type == AVMEDIA_TYPE_VIDEO && pix_fmt != PIX_FMT_NONE)
288         st->codec->pix_fmt = pix_fmt;
289
290     return 0;
291 }
292
293 static int read_packet(AVFormatContext *s1, AVPacket *pkt)
294 {
295     VideoData *s = s1->priv_data;
296     char filename[1024];
297     int i;
298     int size[3]={0}, ret[3]={0};
299     AVIOContext *f[3];
300     AVCodecContext *codec= s1->streams[0]->codec;
301
302     if (!s->is_pipe) {
303         /* loop over input */
304         if (s->loop && s->img_number > s->img_last) {
305             s->img_number = s->img_first;
306         }
307         if (s->img_number > s->img_last)
308             return AVERROR_EOF;
309         if (av_get_frame_filename(filename, sizeof(filename),
310                                   s->path, s->img_number)<0 && s->img_number > 1)
311             return AVERROR(EIO);
312         for(i=0; i<3; i++){
313             if (avio_open(&f[i], filename, AVIO_FLAG_READ) < 0) {
314                 if(i==1)
315                     break;
316                 av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",filename);
317                 return AVERROR(EIO);
318             }
319             size[i]= avio_size(f[i]);
320
321             if(!s->split_planes)
322                 break;
323             filename[ strlen(filename) - 1 ]= 'U' + i;
324         }
325
326         if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width)
327             infer_size(&codec->width, &codec->height, size[0]);
328     } else {
329         f[0] = s1->pb;
330         if (url_feof(f[0]))
331             return AVERROR(EIO);
332         size[0]= 4096;
333     }
334
335     av_new_packet(pkt, size[0] + size[1] + size[2]);
336     pkt->stream_index = 0;
337     pkt->flags |= AV_PKT_FLAG_KEY;
338
339     pkt->size= 0;
340     for(i=0; i<3; i++){
341         if(size[i]){
342             ret[i]= avio_read(f[i], pkt->data + pkt->size, size[i]);
343             if (!s->is_pipe)
344                 avio_close(f[i]);
345             if(ret[i]>0)
346                 pkt->size += ret[i];
347         }
348     }
349
350     if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) {
351         av_free_packet(pkt);
352         return AVERROR(EIO); /* signal EOF */
353     } else {
354         s->img_count++;
355         s->img_number++;
356         return 0;
357     }
358 }
359
360 #if CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER
361 /******************************************************/
362 /* image output */
363
364 static int write_header(AVFormatContext *s)
365 {
366     VideoData *img = s->priv_data;
367     const char *str;
368
369     img->img_number = 1;
370     av_strlcpy(img->path, s->filename, sizeof(img->path));
371
372     /* find format */
373     if (s->oformat->flags & AVFMT_NOFILE)
374         img->is_pipe = 0;
375     else
376         img->is_pipe = 1;
377
378     str = strrchr(img->path, '.');
379     img->split_planes = str && !av_strcasecmp(str + 1, "y");
380     return 0;
381 }
382
383 static int write_packet(AVFormatContext *s, AVPacket *pkt)
384 {
385     VideoData *img = s->priv_data;
386     AVIOContext *pb[3];
387     char filename[1024];
388     AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
389     int i;
390
391     if (!img->is_pipe) {
392         if (av_get_frame_filename(filename, sizeof(filename),
393                                   img->path, img->img_number) < 0 && img->img_number>1) {
394             av_log(s, AV_LOG_ERROR,
395                    "Could not get frame filename number %d from pattern '%s'\n",
396                    img->img_number, img->path);
397             return AVERROR(EINVAL);
398         }
399         for(i=0; i<3; i++){
400             if (avio_open(&pb[i], filename, AVIO_FLAG_WRITE) < 0) {
401                 av_log(s, AV_LOG_ERROR, "Could not open file : %s\n",filename);
402                 return AVERROR(EIO);
403             }
404
405             if(!img->split_planes)
406                 break;
407             filename[ strlen(filename) - 1 ]= 'U' + i;
408         }
409     } else {
410         pb[0] = s->pb;
411     }
412
413     if(img->split_planes){
414         int ysize = codec->width * codec->height;
415         avio_write(pb[0], pkt->data        , ysize);
416         avio_write(pb[1], pkt->data + ysize, (pkt->size - ysize)/2);
417         avio_write(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2);
418         avio_flush(pb[1]);
419         avio_flush(pb[2]);
420         avio_close(pb[1]);
421         avio_close(pb[2]);
422     }else{
423         if(av_str2id(img_tags, s->filename) == CODEC_ID_JPEG2000){
424             AVStream *st = s->streams[0];
425             if(st->codec->extradata_size > 8 &&
426                AV_RL32(st->codec->extradata+4) == MKTAG('j','p','2','h')){
427                 if(pkt->size < 8 || AV_RL32(pkt->data+4) != MKTAG('j','p','2','c'))
428                     goto error;
429                 avio_wb32(pb[0], 12);
430                 ffio_wfourcc(pb[0], "jP  ");
431                 avio_wb32(pb[0], 0x0D0A870A); // signature
432                 avio_wb32(pb[0], 20);
433                 ffio_wfourcc(pb[0], "ftyp");
434                 ffio_wfourcc(pb[0], "jp2 ");
435                 avio_wb32(pb[0], 0);
436                 ffio_wfourcc(pb[0], "jp2 ");
437                 avio_write(pb[0], st->codec->extradata, st->codec->extradata_size);
438             }else if(pkt->size >= 8 && AV_RB32(pkt->data) == 0xFF4FFF51){
439                 //jpeg2000 codestream
440             }else if(pkt->size < 8 ||
441                      (!st->codec->extradata_size &&
442                       AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature
443             error:
444                 av_log(s, AV_LOG_ERROR, "malformated jpeg2000 codestream %X\n", AV_RB32(pkt->data));
445                 return -1;
446             }
447         }
448         avio_write(pb[0], pkt->data, pkt->size);
449     }
450     avio_flush(pb[0]);
451     if (!img->is_pipe) {
452         avio_close(pb[0]);
453     }
454
455     img->img_number++;
456     return 0;
457 }
458
459 #endif /* CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER */
460
461 #define OFFSET(x) offsetof(VideoData, x)
462 #define DEC AV_OPT_FLAG_DECODING_PARAM
463 static const AVOption options[] = {
464     { "pixel_format", "", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
465     { "video_size",   "", OFFSET(video_size),   AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
466     { "framerate",    "", OFFSET(framerate),    AV_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC },
467     { "loop",         "", OFFSET(loop),         AV_OPT_TYPE_INT,    {.dbl = 0},    0, 1, DEC },
468     { NULL },
469 };
470
471 /* input */
472 #if CONFIG_IMAGE2_DEMUXER
473 static const AVClass img2_class = {
474     .class_name = "image2 demuxer",
475     .item_name  = av_default_item_name,
476     .option     = options,
477     .version    = LIBAVUTIL_VERSION_INT,
478 };
479 AVInputFormat ff_image2_demuxer = {
480     .name           = "image2",
481     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
482     .priv_data_size = sizeof(VideoData),
483     .read_probe     = read_probe,
484     .read_header    = read_header,
485     .read_packet    = read_packet,
486     .flags          = AVFMT_NOFILE,
487     .priv_class     = &img2_class,
488 };
489 #endif
490 #if CONFIG_IMAGE2PIPE_DEMUXER
491 static const AVClass img2pipe_class = {
492     .class_name = "image2pipe demuxer",
493     .item_name  = av_default_item_name,
494     .option     = options,
495     .version    = LIBAVUTIL_VERSION_INT,
496 };
497 AVInputFormat ff_image2pipe_demuxer = {
498     .name           = "image2pipe",
499     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
500     .priv_data_size = sizeof(VideoData),
501     .read_header    = read_header,
502     .read_packet    = read_packet,
503     .priv_class     = &img2pipe_class,
504 };
505 #endif
506
507 /* output */
508 #if CONFIG_IMAGE2_MUXER
509 AVOutputFormat ff_image2_muxer = {
510     .name           = "image2",
511     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
512     .extensions     = "bmp,dpx,jls,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
513                       "ppm,sgi,tga,tif,tiff,jp2",
514     .priv_data_size = sizeof(VideoData),
515     .video_codec    = CODEC_ID_MJPEG,
516     .write_header   = write_header,
517     .write_packet   = write_packet,
518     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE
519 };
520 #endif
521 #if CONFIG_IMAGE2PIPE_MUXER
522 AVOutputFormat ff_image2pipe_muxer = {
523     .name           = "image2pipe",
524     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
525     .priv_data_size = sizeof(VideoData),
526     .video_codec    = CODEC_ID_MJPEG,
527     .write_header   = write_header,
528     .write_packet   = write_packet,
529     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
530 };
531 #endif