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