]> git.sesse.net Git - ffmpeg/blob - libavformat/img2dec.c
Merge commit '59388dac69f9a79eddb003d1c6aad5ec89d4287b'
[ffmpeg] / libavformat / img2dec.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 <sys/stat.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 "internal.h"
31 #include "img2.h"
32
33 #if HAVE_GLOB
34 /* Locally define as 0 (bitwise-OR no-op) any missing glob options that
35    are non-posix glibc/bsd extensions. */
36 #ifndef GLOB_NOMAGIC
37 #define GLOB_NOMAGIC 0
38 #endif
39 #ifndef GLOB_BRACE
40 #define GLOB_BRACE 0
41 #endif
42
43 #endif /* HAVE_GLOB */
44
45 static const int sizes[][2] = {
46     { 640, 480 },
47     { 720, 480 },
48     { 720, 576 },
49     { 352, 288 },
50     { 352, 240 },
51     { 160, 128 },
52     { 512, 384 },
53     { 640, 352 },
54     { 640, 240 },
55 };
56
57 static int infer_size(int *width_ptr, int *height_ptr, int size)
58 {
59     int i;
60
61     for (i = 0; i < FF_ARRAY_ELEMS(sizes); i++) {
62         if ((sizes[i][0] * sizes[i][1]) == size) {
63             *width_ptr  = sizes[i][0];
64             *height_ptr = sizes[i][1];
65             return 0;
66         }
67     }
68
69     return -1;
70 }
71
72 static int is_glob(const char *path)
73 {
74 #if HAVE_GLOB
75     size_t span = 0;
76     const char *p = path;
77
78     while (p = strchr(p, '%')) {
79         if (*(++p) == '%') {
80             ++p;
81             continue;
82         }
83         if (span = strspn(p, "*?[]{}"))
84             break;
85     }
86     /* Did we hit a glob char or get to the end? */
87     return span != 0;
88 #else
89     return 0;
90 #endif
91 }
92
93 /**
94  * Get index range of image files matched by path.
95  *
96  * @param pfirst_index pointer to index updated with the first number in the range
97  * @param plast_index  pointer to index updated with the last number in the range
98  * @param path         path which has to be matched by the image files in the range
99  * @param start_index  minimum accepted value for the first index in the range
100  * @return -1 if no image file could be found
101  */
102 static int find_image_range(int *pfirst_index, int *plast_index,
103                             const char *path, int start_index, int start_index_range)
104 {
105     char buf[1024];
106     int range, last_index, range1, first_index;
107
108     /* find the first image */
109     for (first_index = start_index; first_index < start_index + start_index_range; first_index++) {
110         if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0) {
111             *pfirst_index =
112             *plast_index  = 1;
113             if (avio_check(buf, AVIO_FLAG_READ) > 0)
114                 return 0;
115             return -1;
116         }
117         if (avio_check(buf, AVIO_FLAG_READ) > 0)
118             break;
119     }
120     if (first_index == start_index + start_index_range)
121         goto fail;
122
123     /* find the last image */
124     last_index = first_index;
125     for (;;) {
126         range = 0;
127         for (;;) {
128             if (!range)
129                 range1 = 1;
130             else
131                 range1 = 2 * range;
132             if (av_get_frame_filename(buf, sizeof(buf), path,
133                                       last_index + range1) < 0)
134                 goto fail;
135             if (avio_check(buf, AVIO_FLAG_READ) <= 0)
136                 break;
137             range = range1;
138             /* just in case... */
139             if (range >= (1 << 30))
140                 goto fail;
141         }
142         /* we are sure than image last_index + range exists */
143         if (!range)
144             break;
145         last_index += range;
146     }
147     *pfirst_index = first_index;
148     *plast_index  = last_index;
149     return 0;
150
151 fail:
152     return -1;
153 }
154
155 static int img_read_probe(AVProbeData *p)
156 {
157     if (p->filename && ff_guess_image2_codec(p->filename)) {
158         if (av_filename_number_test(p->filename))
159             return AVPROBE_SCORE_MAX;
160         else if (is_glob(p->filename))
161             return AVPROBE_SCORE_MAX;
162         else if (av_match_ext(p->filename, "raw") || av_match_ext(p->filename, "gif"))
163             return 5;
164         else
165             return AVPROBE_SCORE_EXTENSION;
166     }
167     return 0;
168 }
169
170 int ff_img_read_header(AVFormatContext *s1)
171 {
172     VideoDemuxData *s = s1->priv_data;
173     int first_index, last_index;
174     AVStream *st;
175     enum AVPixelFormat pix_fmt = AV_PIX_FMT_NONE;
176
177     s1->ctx_flags |= AVFMTCTX_NOHEADER;
178
179     st = avformat_new_stream(s1, NULL);
180     if (!st) {
181         return AVERROR(ENOMEM);
182     }
183
184     if (s->pixel_format &&
185         (pix_fmt = av_get_pix_fmt(s->pixel_format)) == AV_PIX_FMT_NONE) {
186         av_log(s1, AV_LOG_ERROR, "No such pixel format: %s.\n",
187                s->pixel_format);
188         return AVERROR(EINVAL);
189     }
190
191     av_strlcpy(s->path, s1->filename, sizeof(s->path));
192     s->img_number = 0;
193     s->img_count  = 0;
194
195     /* find format */
196     if (s1->iformat->flags & AVFMT_NOFILE)
197         s->is_pipe = 0;
198     else {
199         s->is_pipe       = 1;
200         st->need_parsing = AVSTREAM_PARSE_FULL;
201     }
202
203     if (s->ts_from_file)
204         avpriv_set_pts_info(st, 64, 1, 1);
205     else
206         avpriv_set_pts_info(st, 64, s->framerate.den, s->framerate.num);
207
208     if (s->width && s->height) {
209         st->codec->width  = s->width;
210         st->codec->height = s->height;
211     }
212
213     if (!s->is_pipe) {
214         if (s->pattern_type == PT_GLOB_SEQUENCE) {
215         s->use_glob = is_glob(s->path);
216         if (s->use_glob) {
217             char *p = s->path, *q, *dup;
218             int gerr;
219
220             av_log(s1, AV_LOG_WARNING, "Pattern type 'glob_sequence' is deprecated: "
221                    "use pattern_type 'glob' instead\n");
222 #if HAVE_GLOB
223             dup = q = av_strdup(p);
224             while (*q) {
225                 /* Do we have room for the next char and a \ insertion? */
226                 if ((p - s->path) >= (sizeof(s->path) - 2))
227                   break;
228                 if (*q == '%' && strspn(q + 1, "%*?[]{}"))
229                     ++q;
230                 else if (strspn(q, "\\*?[]{}"))
231                     *p++ = '\\';
232                 *p++ = *q++;
233             }
234             *p = 0;
235             av_free(dup);
236
237             gerr = glob(s->path, GLOB_NOCHECK|GLOB_BRACE|GLOB_NOMAGIC, NULL, &s->globstate);
238             if (gerr != 0) {
239                 return AVERROR(ENOENT);
240             }
241             first_index = 0;
242             last_index = s->globstate.gl_pathc - 1;
243 #endif
244         }
245         }
246         if ((s->pattern_type == PT_GLOB_SEQUENCE && !s->use_glob) || s->pattern_type == PT_SEQUENCE) {
247             if (find_image_range(&first_index, &last_index, s->path,
248                                  s->start_number, s->start_number_range) < 0) {
249                 av_log(s1, AV_LOG_ERROR,
250                        "Could find no file with path '%s' and index in the range %d-%d\n",
251                        s->path, s->start_number, s->start_number + s->start_number_range - 1);
252                 return AVERROR(ENOENT);
253             }
254         } else if (s->pattern_type == PT_GLOB) {
255 #if HAVE_GLOB
256             int gerr;
257             gerr = glob(s->path, GLOB_NOCHECK|GLOB_BRACE|GLOB_NOMAGIC, NULL, &s->globstate);
258             if (gerr != 0) {
259                 return AVERROR(ENOENT);
260             }
261             first_index = 0;
262             last_index = s->globstate.gl_pathc - 1;
263             s->use_glob = 1;
264 #else
265             av_log(s1, AV_LOG_ERROR,
266                    "Pattern type 'glob' was selected but globbing "
267                    "is not supported by this libavformat build\n");
268             return AVERROR(ENOSYS);
269 #endif
270         } else if (s->pattern_type != PT_GLOB_SEQUENCE) {
271             av_log(s1, AV_LOG_ERROR,
272                    "Unknown value '%d' for pattern_type option\n", s->pattern_type);
273             return AVERROR(EINVAL);
274         }
275         s->img_first  = first_index;
276         s->img_last   = last_index;
277         s->img_number = first_index;
278         /* compute duration */
279         if (!s->ts_from_file) {
280             st->start_time = 0;
281             st->duration   = last_index - first_index + 1;
282         }
283     }
284
285     if (s1->video_codec_id) {
286         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
287         st->codec->codec_id   = s1->video_codec_id;
288     } else if (s1->audio_codec_id) {
289         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
290         st->codec->codec_id   = s1->audio_codec_id;
291     } else if (s1->iformat->raw_codec_id) {
292         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
293         st->codec->codec_id   = s1->iformat->raw_codec_id;
294     } else {
295         const char *str = strrchr(s->path, '.');
296         s->split_planes       = str && !av_strcasecmp(str + 1, "y");
297         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
298         st->codec->codec_id   = ff_guess_image2_codec(s->path);
299         if (st->codec->codec_id == AV_CODEC_ID_LJPEG)
300             st->codec->codec_id = AV_CODEC_ID_MJPEG;
301         if (st->codec->codec_id == AV_CODEC_ID_ALIAS_PIX) // we cannot distingiush this from BRENDER_PIX
302             st->codec->codec_id = AV_CODEC_ID_NONE;
303     }
304     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
305         pix_fmt != AV_PIX_FMT_NONE)
306         st->codec->pix_fmt = pix_fmt;
307
308     return 0;
309 }
310
311 int ff_img_read_packet(AVFormatContext *s1, AVPacket *pkt)
312 {
313     VideoDemuxData *s = s1->priv_data;
314     char filename_bytes[1024];
315     char *filename = filename_bytes;
316     int i;
317     int size[3]           = { 0 }, ret[3] = { 0 };
318     AVIOContext *f[3]     = { NULL };
319     AVCodecContext *codec = s1->streams[0]->codec;
320
321     if (!s->is_pipe) {
322         /* loop over input */
323         if (s->loop && s->img_number > s->img_last) {
324             s->img_number = s->img_first;
325         }
326         if (s->img_number > s->img_last)
327             return AVERROR_EOF;
328         if (s->use_glob) {
329 #if HAVE_GLOB
330             filename = s->globstate.gl_pathv[s->img_number];
331 #endif
332         } else {
333         if (av_get_frame_filename(filename_bytes, sizeof(filename_bytes),
334                                   s->path,
335                                   s->img_number) < 0 && s->img_number > 1)
336             return AVERROR(EIO);
337         }
338         for (i = 0; i < 3; i++) {
339             if (avio_open2(&f[i], filename, AVIO_FLAG_READ,
340                            &s1->interrupt_callback, NULL) < 0) {
341                 if (i >= 1)
342                     break;
343                 av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",
344                        filename);
345                 return AVERROR(EIO);
346             }
347             size[i] = avio_size(f[i]);
348
349             if (!s->split_planes)
350                 break;
351             filename[strlen(filename) - 1] = 'U' + i;
352         }
353
354         if (codec->codec_id == AV_CODEC_ID_NONE) {
355             AVProbeData pd;
356             AVInputFormat *ifmt;
357             uint8_t header[PROBE_BUF_MIN + AVPROBE_PADDING_SIZE];
358             int ret;
359             int score = 0;
360
361             ret = avio_read(f[0], header, PROBE_BUF_MIN);
362             if (ret < 0)
363                 return ret;
364             memset(header + ret, 0, sizeof(header) - ret);
365             avio_skip(f[0], -ret);
366             pd.buf = header;
367             pd.buf_size = ret;
368             pd.filename = filename;
369
370             ifmt = av_probe_input_format3(&pd, 1, &score);
371             if (ifmt && ifmt->read_packet == ff_img_read_packet && ifmt->raw_codec_id)
372                 codec->codec_id = ifmt->raw_codec_id;
373         }
374
375         if (codec->codec_id == AV_CODEC_ID_RAWVIDEO && !codec->width)
376             infer_size(&codec->width, &codec->height, size[0]);
377     } else {
378         f[0] = s1->pb;
379         if (url_feof(f[0]))
380             return AVERROR(EIO);
381         if (s->frame_size > 0) {
382             size[0] = s->frame_size;
383         } else {
384             size[0] = 4096;
385         }
386     }
387
388     if (av_new_packet(pkt, size[0] + size[1] + size[2]) < 0)
389         return AVERROR(ENOMEM);
390     pkt->stream_index = 0;
391     pkt->flags       |= AV_PKT_FLAG_KEY;
392     if (s->ts_from_file) {
393         struct stat img_stat;
394         if (stat(filename, &img_stat))
395             return AVERROR(EIO);
396         pkt->pts = (int64_t)img_stat.st_mtime;
397         av_add_index_entry(s1->streams[0], s->img_number, pkt->pts, 0, 0, AVINDEX_KEYFRAME);
398     } else if (!s->is_pipe) {
399         pkt->pts      = s->pts;
400     }
401
402     pkt->size = 0;
403     for (i = 0; i < 3; i++) {
404         if (f[i]) {
405             ret[i] = avio_read(f[i], pkt->data + pkt->size, size[i]);
406             if (!s->is_pipe)
407                 avio_close(f[i]);
408             if (ret[i] > 0)
409                 pkt->size += ret[i];
410         }
411     }
412
413     if (ret[0] <= 0 || ret[1] < 0 || ret[2] < 0) {
414         av_free_packet(pkt);
415         return AVERROR(EIO); /* signal EOF */
416     } else {
417         s->img_count++;
418         s->img_number++;
419         s->pts++;
420         return 0;
421     }
422 }
423
424 static int img_read_close(struct AVFormatContext* s1)
425 {
426     VideoDemuxData *s = s1->priv_data;
427 #if HAVE_GLOB
428     if (s->use_glob) {
429         globfree(&s->globstate);
430     }
431 #endif
432     return 0;
433 }
434
435 static int img_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
436 {
437     VideoDemuxData *s1 = s->priv_data;
438     AVStream *st = s->streams[0];
439
440     if (s1->ts_from_file) {
441         int index = av_index_search_timestamp(st, timestamp, flags);
442         if(index < 0)
443             return -1;
444         s1->img_number = st->index_entries[index].pos;
445         return 0;
446     }
447
448     if (timestamp < 0 || !s1->loop && timestamp > s1->img_last - s1->img_first)
449         return -1;
450     s1->img_number = timestamp%(s1->img_last - s1->img_first + 1) + s1->img_first;
451     s1->pts = timestamp;
452     return 0;
453 }
454
455 #define OFFSET(x) offsetof(VideoDemuxData, x)
456 #define DEC AV_OPT_FLAG_DECODING_PARAM
457 static const AVOption options[] = {
458     { "framerate",    "set the video framerate",             OFFSET(framerate),    AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, 0,   DEC },
459     { "loop",         "force loop over input file sequence", OFFSET(loop),         AV_OPT_TYPE_INT,    {.i64 = 0   }, 0, 1,       DEC },
460
461     { "pattern_type", "set pattern type",                    OFFSET(pattern_type), AV_OPT_TYPE_INT,    {.i64=PT_GLOB_SEQUENCE}, 0,       INT_MAX, DEC, "pattern_type"},
462     { "glob_sequence","select glob/sequence pattern type",   0, AV_OPT_TYPE_CONST,  {.i64=PT_GLOB_SEQUENCE}, INT_MIN, INT_MAX, DEC, "pattern_type" },
463     { "glob",         "select glob pattern type",            0, AV_OPT_TYPE_CONST,  {.i64=PT_GLOB         }, INT_MIN, INT_MAX, DEC, "pattern_type" },
464     { "sequence",     "select sequence pattern type",        0, AV_OPT_TYPE_CONST,  {.i64=PT_SEQUENCE     }, INT_MIN, INT_MAX, DEC, "pattern_type" },
465
466     { "pixel_format", "set video pixel format",              OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0,       DEC },
467     { "start_number", "set first number in the sequence",    OFFSET(start_number), AV_OPT_TYPE_INT,    {.i64 = 0   }, 0, INT_MAX, DEC },
468     { "start_number_range", "set range for looking at the first sequence number", OFFSET(start_number_range), AV_OPT_TYPE_INT, {.i64 = 5}, 1, INT_MAX, DEC },
469     { "video_size",   "set video size",                      OFFSET(width),        AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0,   DEC },
470     { "frame_size",   "force frame size in bytes",           OFFSET(frame_size),   AV_OPT_TYPE_INT,    {.i64 = 0   }, 0, INT_MAX, DEC },
471     { "ts_from_file", "set frame timestamp from file's one", OFFSET(ts_from_file), AV_OPT_TYPE_INT,    {.i64 = 0   }, 0, 1,       DEC },
472     { NULL },
473 };
474
475 #if CONFIG_IMAGE2_DEMUXER
476 static const AVClass img2_class = {
477     .class_name = "image2 demuxer",
478     .item_name  = av_default_item_name,
479     .option     = options,
480     .version    = LIBAVUTIL_VERSION_INT,
481 };
482 AVInputFormat ff_image2_demuxer = {
483     .name           = "image2",
484     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
485     .priv_data_size = sizeof(VideoDemuxData),
486     .read_probe     = img_read_probe,
487     .read_header    = ff_img_read_header,
488     .read_packet    = ff_img_read_packet,
489     .read_close     = img_read_close,
490     .read_seek      = img_read_seek,
491     .flags          = AVFMT_NOFILE,
492     .priv_class     = &img2_class,
493 };
494 #endif
495 #if CONFIG_IMAGE2PIPE_DEMUXER
496 static const AVClass img2pipe_class = {
497     .class_name = "image2pipe demuxer",
498     .item_name  = av_default_item_name,
499     .option     = options,
500     .version    = LIBAVUTIL_VERSION_INT,
501 };
502 AVInputFormat ff_image2pipe_demuxer = {
503     .name           = "image2pipe",
504     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
505     .priv_data_size = sizeof(VideoDemuxData),
506     .read_header    = ff_img_read_header,
507     .read_packet    = ff_img_read_packet,
508     .priv_class     = &img2pipe_class,
509 };
510 #endif