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