]> git.sesse.net Git - ffmpeg/blob - libavformat/img2dec.c
lavf/img2dec: Auto-detect Cintel scanner images.
[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 #define _DEFAULT_SOURCE
24 #define _BSD_SOURCE
25 #include <sys/stat.h>
26 #include "libavutil/avstring.h"
27 #include "libavutil/log.h"
28 #include "libavutil/opt.h"
29 #include "libavutil/pixdesc.h"
30 #include "libavutil/parseutils.h"
31 #include "libavutil/intreadwrite.h"
32 #include "libavcodec/gif.h"
33 #include "avformat.h"
34 #include "avio_internal.h"
35 #include "internal.h"
36 #include "img2.h"
37 #include "libavcodec/mjpeg.h"
38 #include "libavcodec/xwd.h"
39 #include "subtitles.h"
40
41 #if HAVE_GLOB
42 /* Locally define as 0 (bitwise-OR no-op) any missing glob options that
43    are non-posix glibc/bsd extensions. */
44 #ifndef GLOB_NOMAGIC
45 #define GLOB_NOMAGIC 0
46 #endif
47 #ifndef GLOB_BRACE
48 #define GLOB_BRACE 0
49 #endif
50
51 #endif /* HAVE_GLOB */
52
53 static const int sizes[][2] = {
54     { 640, 480 },
55     { 720, 480 },
56     { 720, 576 },
57     { 352, 288 },
58     { 352, 240 },
59     { 160, 128 },
60     { 512, 384 },
61     { 640, 352 },
62     { 640, 240 },
63 };
64
65 static int infer_size(int *width_ptr, int *height_ptr, int size)
66 {
67     int i;
68
69     for (i = 0; i < FF_ARRAY_ELEMS(sizes); i++) {
70         if ((sizes[i][0] * sizes[i][1]) == size) {
71             *width_ptr  = sizes[i][0];
72             *height_ptr = sizes[i][1];
73             return 0;
74         }
75     }
76
77     return -1;
78 }
79
80 static int is_glob(const char *path)
81 {
82 #if HAVE_GLOB
83     size_t span = 0;
84     const char *p = path;
85
86     while (p = strchr(p, '%')) {
87         if (*(++p) == '%') {
88             ++p;
89             continue;
90         }
91         if (span = strspn(p, "*?[]{}"))
92             break;
93     }
94     /* Did we hit a glob char or get to the end? */
95     return span != 0;
96 #else
97     return 0;
98 #endif
99 }
100
101 /**
102  * Get index range of image files matched by path.
103  *
104  * @param pfirst_index pointer to index updated with the first number in the range
105  * @param plast_index  pointer to index updated with the last number in the range
106  * @param path         path which has to be matched by the image files in the range
107  * @param start_index  minimum accepted value for the first index in the range
108  * @return -1 if no image file could be found
109  */
110 static int find_image_range(AVIOContext *pb, int *pfirst_index, int *plast_index,
111                             const char *path, int start_index, int start_index_range)
112 {
113     char buf[1024];
114     int range, last_index, range1, first_index;
115
116     /* find the first image */
117     for (first_index = start_index; first_index < start_index + start_index_range; first_index++) {
118         if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0) {
119             *pfirst_index =
120             *plast_index  = 1;
121             if (pb || avio_check(buf, AVIO_FLAG_READ) > 0)
122                 return 0;
123             return -1;
124         }
125         if (avio_check(buf, AVIO_FLAG_READ) > 0)
126             break;
127     }
128     if (first_index == start_index + start_index_range)
129         goto fail;
130
131     /* find the last image */
132     last_index = first_index;
133     for (;;) {
134         range = 0;
135         for (;;) {
136             if (!range)
137                 range1 = 1;
138             else
139                 range1 = 2 * range;
140             if (av_get_frame_filename(buf, sizeof(buf), path,
141                                       last_index + range1) < 0)
142                 goto fail;
143             if (avio_check(buf, AVIO_FLAG_READ) <= 0)
144                 break;
145             range = range1;
146             /* just in case... */
147             if (range >= (1 << 30))
148                 goto fail;
149         }
150         /* we are sure than image last_index + range exists */
151         if (!range)
152             break;
153         last_index += range;
154     }
155     *pfirst_index = first_index;
156     *plast_index  = last_index;
157     return 0;
158
159 fail:
160     return -1;
161 }
162
163 static int img_read_probe(const AVProbeData *p)
164 {
165     if (p->filename && ff_guess_image2_codec(p->filename)) {
166         if (av_filename_number_test(p->filename))
167             return AVPROBE_SCORE_MAX;
168         else if (is_glob(p->filename))
169             return AVPROBE_SCORE_MAX;
170         else if (p->filename[strcspn(p->filename, "*?{")]) // probably PT_GLOB
171             return AVPROBE_SCORE_EXTENSION + 2; // score chosen to be a tad above the image pipes
172         else if (p->buf_size == 0)
173             return 0;
174         else if (av_match_ext(p->filename, "raw") || av_match_ext(p->filename, "gif"))
175             return 5;
176         else
177             return AVPROBE_SCORE_EXTENSION;
178     }
179     return 0;
180 }
181
182 int ff_img_read_header(AVFormatContext *s1)
183 {
184     VideoDemuxData *s = s1->priv_data;
185     int first_index = 1, last_index = 1;
186     AVStream *st;
187     enum AVPixelFormat pix_fmt = AV_PIX_FMT_NONE;
188
189     s1->ctx_flags |= AVFMTCTX_NOHEADER;
190
191     st = avformat_new_stream(s1, NULL);
192     if (!st) {
193         return AVERROR(ENOMEM);
194     }
195
196     if (s->pixel_format &&
197         (pix_fmt = av_get_pix_fmt(s->pixel_format)) == AV_PIX_FMT_NONE) {
198         av_log(s1, AV_LOG_ERROR, "No such pixel format: %s.\n",
199                s->pixel_format);
200         return AVERROR(EINVAL);
201     }
202
203     av_strlcpy(s->path, s1->url, sizeof(s->path));
204     s->img_number = 0;
205     s->img_count  = 0;
206
207     /* find format */
208     if (s1->iformat->flags & AVFMT_NOFILE)
209         s->is_pipe = 0;
210     else {
211         s->is_pipe       = 1;
212         st->need_parsing = AVSTREAM_PARSE_FULL;
213     }
214
215     if (s->ts_from_file == 2) {
216 #if !HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
217         av_log(s1, AV_LOG_ERROR, "POSIX.1-2008 not supported, nanosecond file timestamps unavailable\n");
218         return AVERROR(ENOSYS);
219 #endif
220         avpriv_set_pts_info(st, 64, 1, 1000000000);
221     } else if (s->ts_from_file)
222         avpriv_set_pts_info(st, 64, 1, 1);
223     else
224         avpriv_set_pts_info(st, 64, s->framerate.den, s->framerate.num);
225
226     if (s->width && s->height) {
227         st->codecpar->width  = s->width;
228         st->codecpar->height = s->height;
229     }
230
231     if (!s->is_pipe) {
232         if (s->pattern_type == PT_DEFAULT) {
233             if (s1->pb) {
234                 s->pattern_type = PT_NONE;
235             } else
236                 s->pattern_type = PT_GLOB_SEQUENCE;
237         }
238
239         if (s->pattern_type == PT_GLOB_SEQUENCE) {
240         s->use_glob = is_glob(s->path);
241         if (s->use_glob) {
242 #if HAVE_GLOB
243             char *p = s->path, *q, *dup;
244             int gerr;
245 #endif
246
247             av_log(s1, AV_LOG_WARNING, "Pattern type 'glob_sequence' is deprecated: "
248                    "use pattern_type 'glob' instead\n");
249 #if HAVE_GLOB
250             dup = q = av_strdup(p);
251             while (*q) {
252                 /* Do we have room for the next char and a \ insertion? */
253                 if ((p - s->path) >= (sizeof(s->path) - 2))
254                   break;
255                 if (*q == '%' && strspn(q + 1, "%*?[]{}"))
256                     ++q;
257                 else if (strspn(q, "\\*?[]{}"))
258                     *p++ = '\\';
259                 *p++ = *q++;
260             }
261             *p = 0;
262             av_free(dup);
263
264             gerr = glob(s->path, GLOB_NOCHECK|GLOB_BRACE|GLOB_NOMAGIC, NULL, &s->globstate);
265             if (gerr != 0) {
266                 return AVERROR(ENOENT);
267             }
268             first_index = 0;
269             last_index = s->globstate.gl_pathc - 1;
270 #endif
271         }
272         }
273         if ((s->pattern_type == PT_GLOB_SEQUENCE && !s->use_glob) || s->pattern_type == PT_SEQUENCE) {
274             if (find_image_range(s1->pb, &first_index, &last_index, s->path,
275                                  s->start_number, s->start_number_range) < 0) {
276                 av_log(s1, AV_LOG_ERROR,
277                        "Could find no file with path '%s' and index in the range %d-%d\n",
278                        s->path, s->start_number, s->start_number + s->start_number_range - 1);
279                 return AVERROR(ENOENT);
280             }
281         } else if (s->pattern_type == PT_GLOB) {
282 #if HAVE_GLOB
283             int gerr;
284             gerr = glob(s->path, GLOB_NOCHECK|GLOB_BRACE|GLOB_NOMAGIC, NULL, &s->globstate);
285             if (gerr != 0) {
286                 return AVERROR(ENOENT);
287             }
288             first_index = 0;
289             last_index = s->globstate.gl_pathc - 1;
290             s->use_glob = 1;
291 #else
292             av_log(s1, AV_LOG_ERROR,
293                    "Pattern type 'glob' was selected but globbing "
294                    "is not supported by this libavformat build\n");
295             return AVERROR(ENOSYS);
296 #endif
297         } else if (s->pattern_type != PT_GLOB_SEQUENCE && s->pattern_type != PT_NONE) {
298             av_log(s1, AV_LOG_ERROR,
299                    "Unknown value '%d' for pattern_type option\n", s->pattern_type);
300             return AVERROR(EINVAL);
301         }
302         s->img_first  = first_index;
303         s->img_last   = last_index;
304         s->img_number = first_index;
305         /* compute duration */
306         if (!s->ts_from_file) {
307             st->start_time = 0;
308             st->duration   = last_index - first_index + 1;
309         }
310     }
311
312     if (s1->video_codec_id) {
313         st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
314         st->codecpar->codec_id   = s1->video_codec_id;
315     } else if (s1->audio_codec_id) {
316         st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
317         st->codecpar->codec_id   = s1->audio_codec_id;
318     } else if (s1->iformat->raw_codec_id) {
319         st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
320         st->codecpar->codec_id   = s1->iformat->raw_codec_id;
321     } else {
322         const char *str = strrchr(s->path, '.');
323         s->split_planes       = str && !av_strcasecmp(str + 1, "y");
324         st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
325         if (s1->pb) {
326             int probe_buffer_size = 2048;
327             uint8_t *probe_buffer = av_realloc(NULL, probe_buffer_size + AVPROBE_PADDING_SIZE);
328             const AVInputFormat *fmt = NULL;
329             void *fmt_iter = NULL;
330             AVProbeData pd = { 0 };
331
332             if (!probe_buffer)
333                 return AVERROR(ENOMEM);
334
335             probe_buffer_size = avio_read(s1->pb, probe_buffer, probe_buffer_size);
336             if (probe_buffer_size < 0) {
337                 av_free(probe_buffer);
338                 return probe_buffer_size;
339             }
340             memset(probe_buffer + probe_buffer_size, 0, AVPROBE_PADDING_SIZE);
341
342             pd.buf = probe_buffer;
343             pd.buf_size = probe_buffer_size;
344             pd.filename = s1->url;
345
346             while ((fmt = av_demuxer_iterate(&fmt_iter))) {
347                 if (fmt->read_header != ff_img_read_header ||
348                     !fmt->read_probe ||
349                     (fmt->flags & AVFMT_NOFILE) ||
350                     !fmt->raw_codec_id)
351                     continue;
352                 if (fmt->read_probe(&pd) > 0) {
353                     st->codecpar->codec_id = fmt->raw_codec_id;
354                     break;
355                 }
356             }
357             if (s1->flags & AVFMT_FLAG_CUSTOM_IO) {
358                 avio_seek(s1->pb, 0, SEEK_SET);
359                 av_freep(&probe_buffer);
360             } else
361                 ffio_rewind_with_probe_data(s1->pb, &probe_buffer, probe_buffer_size);
362         }
363         if (st->codecpar->codec_id == AV_CODEC_ID_NONE)
364             st->codecpar->codec_id = ff_guess_image2_codec(s->path);
365         if (st->codecpar->codec_id == AV_CODEC_ID_LJPEG)
366             st->codecpar->codec_id = AV_CODEC_ID_MJPEG;
367         if (st->codecpar->codec_id == AV_CODEC_ID_ALIAS_PIX) // we cannot distingiush this from BRENDER_PIX
368             st->codecpar->codec_id = AV_CODEC_ID_NONE;
369     }
370     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
371         pix_fmt != AV_PIX_FMT_NONE)
372         st->codecpar->format = pix_fmt;
373
374     return 0;
375 }
376
377 /**
378  * Add this frame's source path and basename to packet's sidedata
379  * as a dictionary, so it can be used by filters like 'drawtext'.
380  */
381 static int add_filename_as_pkt_side_data(char *filename, AVPacket *pkt) {
382     int metadata_len, ret;
383     AVDictionary *d = NULL;
384     char *packed_metadata = NULL;
385
386     av_dict_set(&d, "lavf.image2dec.source_path", filename, 0);
387     av_dict_set(&d, "lavf.image2dec.source_basename", av_basename(filename), 0);
388
389     packed_metadata = av_packet_pack_dictionary(d, &metadata_len);
390     av_dict_free(&d);
391     if (!packed_metadata)
392         return AVERROR(ENOMEM);
393     ret = av_packet_add_side_data(pkt, AV_PKT_DATA_STRINGS_METADATA,
394                                   packed_metadata, metadata_len);
395     if (ret < 0) {
396         av_freep(&packed_metadata);
397         return ret;
398     }
399     return 0;
400 }
401
402 int ff_img_read_packet(AVFormatContext *s1, AVPacket *pkt)
403 {
404     VideoDemuxData *s = s1->priv_data;
405     char filename_bytes[1024];
406     char *filename = filename_bytes;
407     int i, res;
408     int size[3]           = { 0 }, ret[3] = { 0 };
409     AVIOContext *f[3]     = { NULL };
410     AVCodecParameters *par = s1->streams[0]->codecpar;
411
412     if (!s->is_pipe) {
413         /* loop over input */
414         if (s->loop && s->img_number > s->img_last) {
415             s->img_number = s->img_first;
416         }
417         if (s->img_number > s->img_last)
418             return AVERROR_EOF;
419         if (s->pattern_type == PT_NONE) {
420             av_strlcpy(filename_bytes, s->path, sizeof(filename_bytes));
421         } else if (s->use_glob) {
422 #if HAVE_GLOB
423             filename = s->globstate.gl_pathv[s->img_number];
424 #endif
425         } else {
426         if (av_get_frame_filename(filename_bytes, sizeof(filename_bytes),
427                                   s->path,
428                                   s->img_number) < 0 && s->img_number > 1)
429             return AVERROR(EIO);
430         }
431         for (i = 0; i < 3; i++) {
432             if (s1->pb &&
433                 !strcmp(filename_bytes, s->path) &&
434                 !s->loop &&
435                 !s->split_planes) {
436                 f[i] = s1->pb;
437             } else if (s1->io_open(s1, &f[i], filename, AVIO_FLAG_READ, NULL) < 0) {
438                 if (i >= 1)
439                     break;
440                 av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",
441                        filename);
442                 return AVERROR(EIO);
443             }
444             size[i] = avio_size(f[i]);
445
446             if (!s->split_planes)
447                 break;
448             filename[strlen(filename) - 1] = 'U' + i;
449         }
450
451         if (par->codec_id == AV_CODEC_ID_NONE) {
452             AVProbeData pd = { 0 };
453             const AVInputFormat *ifmt;
454             uint8_t header[PROBE_BUF_MIN + AVPROBE_PADDING_SIZE];
455             int ret;
456             int score = 0;
457
458             ret = avio_read(f[0], header, PROBE_BUF_MIN);
459             if (ret < 0)
460                 return ret;
461             memset(header + ret, 0, sizeof(header) - ret);
462             avio_skip(f[0], -ret);
463             pd.buf = header;
464             pd.buf_size = ret;
465             pd.filename = filename;
466
467             ifmt = av_probe_input_format3(&pd, 1, &score);
468             if (ifmt && ifmt->read_packet == ff_img_read_packet && ifmt->raw_codec_id)
469                 par->codec_id = ifmt->raw_codec_id;
470         }
471
472         if (par->codec_id == AV_CODEC_ID_RAWVIDEO && !par->width)
473             infer_size(&par->width, &par->height, size[0]);
474     } else {
475         f[0] = s1->pb;
476         if (avio_feof(f[0]) && s->loop && s->is_pipe)
477             avio_seek(f[0], 0, SEEK_SET);
478         if (avio_feof(f[0]))
479             return AVERROR_EOF;
480         if (s->frame_size > 0) {
481             size[0] = s->frame_size;
482         } else if (!s1->streams[0]->parser) {
483             size[0] = avio_size(s1->pb);
484         } else {
485             size[0] = 4096;
486         }
487     }
488
489     res = av_new_packet(pkt, size[0] + size[1] + size[2]);
490     if (res < 0) {
491         goto fail;
492     }
493     pkt->stream_index = 0;
494     pkt->flags       |= AV_PKT_FLAG_KEY;
495     if (s->ts_from_file) {
496         struct stat img_stat;
497         if (stat(filename, &img_stat)) {
498             res = AVERROR(EIO);
499             goto fail;
500         }
501         pkt->pts = (int64_t)img_stat.st_mtime;
502 #if HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
503         if (s->ts_from_file == 2)
504             pkt->pts = 1000000000*pkt->pts + img_stat.st_mtim.tv_nsec;
505 #endif
506         av_add_index_entry(s1->streams[0], s->img_number, pkt->pts, 0, 0, AVINDEX_KEYFRAME);
507     } else if (!s->is_pipe) {
508         pkt->pts      = s->pts;
509     }
510
511     if (s->is_pipe)
512         pkt->pos = avio_tell(f[0]);
513
514     /*
515      * export_path_metadata must be explicitly enabled via
516      * command line options for path metadata to be exported
517      * as packet side_data.
518      */
519     if (!s->is_pipe && s->export_path_metadata == 1) {
520         res = add_filename_as_pkt_side_data(filename, pkt);
521         if (res < 0)
522             goto fail;
523     }
524
525     pkt->size = 0;
526     for (i = 0; i < 3; i++) {
527         if (f[i]) {
528             ret[i] = avio_read(f[i], pkt->data + pkt->size, size[i]);
529             if (s->loop && s->is_pipe && ret[i] == AVERROR_EOF) {
530                 if (avio_seek(f[i], 0, SEEK_SET) >= 0) {
531                     pkt->pos = 0;
532                     ret[i] = avio_read(f[i], pkt->data + pkt->size, size[i]);
533                 }
534             }
535             if (!s->is_pipe && f[i] != s1->pb)
536                 ff_format_io_close(s1, &f[i]);
537             if (ret[i] > 0)
538                 pkt->size += ret[i];
539         }
540     }
541
542     if (ret[0] <= 0 || ret[1] < 0 || ret[2] < 0) {
543         if (ret[0] < 0) {
544             res = ret[0];
545         } else if (ret[1] < 0) {
546             res = ret[1];
547         } else if (ret[2] < 0) {
548             res = ret[2];
549         } else {
550             res = AVERROR_EOF;
551         }
552         goto fail;
553     } else {
554         s->img_count++;
555         s->img_number++;
556         s->pts++;
557         return 0;
558     }
559
560 fail:
561     if (!s->is_pipe) {
562         for (i = 0; i < 3; i++) {
563             if (f[i] != s1->pb)
564                 ff_format_io_close(s1, &f[i]);
565         }
566     }
567     return res;
568 }
569
570 static int img_read_close(struct AVFormatContext* s1)
571 {
572 #if HAVE_GLOB
573     VideoDemuxData *s = s1->priv_data;
574     if (s->use_glob) {
575         globfree(&s->globstate);
576     }
577 #endif
578     return 0;
579 }
580
581 static int img_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
582 {
583     VideoDemuxData *s1 = s->priv_data;
584     AVStream *st = s->streams[0];
585
586     if (s1->ts_from_file) {
587         int index = av_index_search_timestamp(st, timestamp, flags);
588         if(index < 0)
589             return -1;
590         s1->img_number = st->index_entries[index].pos;
591         return 0;
592     }
593
594     if (timestamp < 0 || !s1->loop && timestamp > s1->img_last - s1->img_first)
595         return -1;
596     s1->img_number = timestamp%(s1->img_last - s1->img_first + 1) + s1->img_first;
597     s1->pts = timestamp;
598     return 0;
599 }
600
601 #define OFFSET(x) offsetof(VideoDemuxData, x)
602 #define DEC AV_OPT_FLAG_DECODING_PARAM
603 #define COMMON_OPTIONS \
604     { "framerate",    "set the video framerate", OFFSET(framerate),    AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, INT_MAX, DEC }, \
605     { "pixel_format", "set video pixel format",  OFFSET(pixel_format), AV_OPT_TYPE_STRING,     {.str = NULL}, 0, 0,       DEC }, \
606     { "video_size",   "set video size",          OFFSET(width),        AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0,       DEC }, \
607     { "loop",         "force loop over input file sequence", OFFSET(loop), AV_OPT_TYPE_BOOL,   {.i64 = 0   }, 0, 1,       DEC }, \
608     { NULL },
609
610 #if CONFIG_IMAGE2_DEMUXER
611 const AVOption ff_img_options[] = {
612     { "pattern_type", "set pattern type",                    OFFSET(pattern_type), AV_OPT_TYPE_INT,    {.i64=PT_DEFAULT}, 0,       INT_MAX, DEC, "pattern_type"},
613     { "glob_sequence","select glob/sequence pattern type",   0, AV_OPT_TYPE_CONST,  {.i64=PT_GLOB_SEQUENCE}, INT_MIN, INT_MAX, DEC, "pattern_type" },
614     { "glob",         "select glob pattern type",            0, AV_OPT_TYPE_CONST,  {.i64=PT_GLOB         }, INT_MIN, INT_MAX, DEC, "pattern_type" },
615     { "sequence",     "select sequence pattern type",        0, AV_OPT_TYPE_CONST,  {.i64=PT_SEQUENCE     }, INT_MIN, INT_MAX, DEC, "pattern_type" },
616     { "none",         "disable pattern matching",            0, AV_OPT_TYPE_CONST,  {.i64=PT_NONE         }, INT_MIN, INT_MAX, DEC, "pattern_type" },
617     { "start_number", "set first number in the sequence",    OFFSET(start_number), AV_OPT_TYPE_INT,    {.i64 = 0   }, INT_MIN, INT_MAX, DEC },
618     { "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 },
619     { "ts_from_file", "set frame timestamp from file's one", OFFSET(ts_from_file), AV_OPT_TYPE_INT,    {.i64 = 0   }, 0, 2,       DEC, "ts_type" },
620     { "none", "none",                   0, AV_OPT_TYPE_CONST,    {.i64 = 0   }, 0, 2,       DEC, "ts_type" },
621     { "sec",  "second precision",       0, AV_OPT_TYPE_CONST,    {.i64 = 1   }, 0, 2,       DEC, "ts_type" },
622     { "ns",   "nano second precision",  0, AV_OPT_TYPE_CONST,    {.i64 = 2   }, 0, 2,       DEC, "ts_type" },
623     { "export_path_metadata", "enable metadata containing input path information", OFFSET(export_path_metadata), AV_OPT_TYPE_BOOL,   {.i64 = 0   }, 0, 1,       DEC }, \
624     COMMON_OPTIONS
625 };
626
627 static const AVClass img2_class = {
628     .class_name = "image2 demuxer",
629     .item_name  = av_default_item_name,
630     .option     = ff_img_options,
631     .version    = LIBAVUTIL_VERSION_INT,
632 };
633 AVInputFormat ff_image2_demuxer = {
634     .name           = "image2",
635     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
636     .priv_data_size = sizeof(VideoDemuxData),
637     .read_probe     = img_read_probe,
638     .read_header    = ff_img_read_header,
639     .read_packet    = ff_img_read_packet,
640     .read_close     = img_read_close,
641     .read_seek      = img_read_seek,
642     .flags          = AVFMT_NOFILE,
643     .priv_class     = &img2_class,
644 };
645 #endif
646
647 const AVOption ff_img2pipe_options[] = {
648     { "frame_size", "force frame size in bytes", OFFSET(frame_size), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, DEC },
649     COMMON_OPTIONS
650 };
651
652 #if CONFIG_IMAGE2PIPE_DEMUXER
653 static const AVClass img2pipe_class = {
654     .class_name = "image2pipe demuxer",
655     .item_name  = av_default_item_name,
656     .option     = ff_img2pipe_options,
657     .version    = LIBAVUTIL_VERSION_INT,
658 };
659 AVInputFormat ff_image2pipe_demuxer = {
660     .name           = "image2pipe",
661     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
662     .priv_data_size = sizeof(VideoDemuxData),
663     .read_header    = ff_img_read_header,
664     .read_packet    = ff_img_read_packet,
665     .priv_class     = &img2pipe_class,
666 };
667 #endif
668
669 static int bmp_probe(const AVProbeData *p)
670 {
671     const uint8_t *b = p->buf;
672     int ihsize;
673
674     if (AV_RB16(b) != 0x424d)
675         return 0;
676
677     ihsize = AV_RL32(b+14);
678     if (ihsize < 12 || ihsize > 255)
679         return 0;
680
681     if (!AV_RN32(b + 6)) {
682         return AVPROBE_SCORE_EXTENSION + 1;
683     }
684     return AVPROBE_SCORE_EXTENSION / 4;
685 }
686
687 static int cri_probe(const AVProbeData *p)
688 {
689     const uint8_t *b = p->buf;
690
691     if (   AV_RL32(b) == 1
692         && AV_RL32(b + 4) == 4
693         && AV_RN32(b + 8) == AV_RN32("DVCC"))
694         return AVPROBE_SCORE_MAX - 1;
695     return 0;
696 }
697
698 static int dds_probe(const AVProbeData *p)
699 {
700     const uint8_t *b = p->buf;
701
702     if (   AV_RB64(b) == 0x444453207c000000
703         && AV_RL32(b +  8)
704         && AV_RL32(b + 12))
705         return AVPROBE_SCORE_MAX - 1;
706     return 0;
707 }
708
709 static int dpx_probe(const AVProbeData *p)
710 {
711     const uint8_t *b = p->buf;
712     int w, h;
713     int is_big = (AV_RN32(b) == AV_RN32("SDPX"));
714
715     if (p->buf_size < 0x304+8)
716         return 0;
717     w = is_big ? AV_RB32(p->buf + 0x304) : AV_RL32(p->buf + 0x304);
718     h = is_big ? AV_RB32(p->buf + 0x308) : AV_RL32(p->buf + 0x308);
719     if (w <= 0 || h <= 0)
720         return 0;
721
722     if (is_big || AV_RN32(b) == AV_RN32("XPDS"))
723         return AVPROBE_SCORE_EXTENSION + 1;
724     return 0;
725 }
726
727 static int exr_probe(const AVProbeData *p)
728 {
729     const uint8_t *b = p->buf;
730
731     if (AV_RL32(b) == 20000630)
732         return AVPROBE_SCORE_EXTENSION + 1;
733     return 0;
734 }
735
736 static int j2k_probe(const AVProbeData *p)
737 {
738     const uint8_t *b = p->buf;
739
740     if (AV_RB64(b) == 0x0000000c6a502020 ||
741         AV_RB32(b) == 0xff4fff51)
742         return AVPROBE_SCORE_EXTENSION + 1;
743     return 0;
744 }
745
746 static int jpeg_probe(const AVProbeData *p)
747 {
748     const uint8_t *b = p->buf;
749     int i, state = SOI;
750
751     if (AV_RB16(b) != 0xFFD8 ||
752         AV_RB32(b) == 0xFFD8FFF7)
753     return 0;
754
755     b += 2;
756     for (i = 0; i < p->buf_size - 3; i++) {
757         int c;
758         if (b[i] != 0xFF)
759             continue;
760         c = b[i + 1];
761         switch (c) {
762         case SOI:
763             return 0;
764         case SOF0:
765         case SOF1:
766         case SOF2:
767         case SOF3:
768         case SOF5:
769         case SOF6:
770         case SOF7:
771             i += AV_RB16(&b[i + 2]) + 1;
772             if (state != SOI)
773                 return 0;
774             state = SOF0;
775             break;
776         case SOS:
777             i += AV_RB16(&b[i + 2]) + 1;
778             if (state != SOF0 && state != SOS)
779                 return 0;
780             state = SOS;
781             break;
782         case EOI:
783             if (state != SOS)
784                 return 0;
785             state = EOI;
786             break;
787         case DQT:
788         case APP0:
789         case APP1:
790         case APP2:
791         case APP3:
792         case APP4:
793         case APP5:
794         case APP6:
795         case APP7:
796         case APP8:
797         case APP9:
798         case APP10:
799         case APP11:
800         case APP12:
801         case APP13:
802         case APP14:
803         case APP15:
804         case COM:
805             i += AV_RB16(&b[i + 2]) + 1;
806             break;
807         default:
808             if (  (c > TEM && c < SOF0)
809                 || c == JPG)
810                 return 0;
811         }
812     }
813
814     if (state == EOI)
815         return AVPROBE_SCORE_EXTENSION + 1;
816     if (state == SOS)
817         return AVPROBE_SCORE_EXTENSION / 2;
818     return AVPROBE_SCORE_EXTENSION / 8;
819 }
820
821 static int jpegls_probe(const AVProbeData *p)
822 {
823     const uint8_t *b = p->buf;
824
825     if (AV_RB32(b) == 0xffd8fff7)
826          return AVPROBE_SCORE_EXTENSION + 1;
827     return 0;
828 }
829
830 static int pcx_probe(const AVProbeData *p)
831 {
832     const uint8_t *b = p->buf;
833
834     if (   p->buf_size < 128
835         || b[0] != 10
836         || b[1] > 5
837         || b[2] > 1
838         || av_popcount(b[3]) != 1 || b[3] > 8
839         || AV_RL16(&b[4]) > AV_RL16(&b[8])
840         || AV_RL16(&b[6]) > AV_RL16(&b[10])
841         || b[64])
842         return 0;
843     b += 73;
844     while (++b < p->buf + 128)
845         if (*b)
846             return AVPROBE_SCORE_EXTENSION / 4;
847
848     return AVPROBE_SCORE_EXTENSION + 1;
849 }
850
851 static int qdraw_probe(const AVProbeData *p)
852 {
853     const uint8_t *b = p->buf;
854
855     if (   p->buf_size >= 528
856         && (AV_RB64(b + 520) & 0xFFFFFFFFFFFF) == 0x001102ff0c00
857         && AV_RB16(b + 520)
858         && AV_RB16(b + 518))
859         return AVPROBE_SCORE_MAX * 3 / 4;
860     if (   (AV_RB64(b + 8) & 0xFFFFFFFFFFFF) == 0x001102ff0c00
861         && AV_RB16(b + 8)
862         && AV_RB16(b + 6))
863         return AVPROBE_SCORE_EXTENSION / 4;
864     return 0;
865 }
866
867 static int pictor_probe(const AVProbeData *p)
868 {
869     const uint8_t *b = p->buf;
870
871     if (AV_RL16(b) == 0x1234)
872         return AVPROBE_SCORE_EXTENSION / 4;
873     return 0;
874 }
875
876 static int png_probe(const AVProbeData *p)
877 {
878     const uint8_t *b = p->buf;
879
880     if (AV_RB64(b) == 0x89504e470d0a1a0a)
881         return AVPROBE_SCORE_MAX - 1;
882     return 0;
883 }
884
885 static int psd_probe(const AVProbeData *p)
886 {
887     const uint8_t *b = p->buf;
888     int ret = 0;
889     uint16_t color_mode;
890
891     if (AV_RL32(b) == MKTAG('8','B','P','S')) {
892         ret += 1;
893     } else {
894         return 0;
895     }
896
897     if ((b[4] == 0) && (b[5] == 1)) {/* version 1 is PSD, version 2 is PSB */
898         ret += 1;
899     } else {
900         return 0;
901     }
902
903     if ((AV_RL32(b+6) == 0) && (AV_RL16(b+10) == 0))/* reserved must be 0 */
904         ret += 1;
905
906     color_mode = AV_RB16(b+24);
907     if ((color_mode <= 9) && (color_mode != 5) && (color_mode != 6))
908         ret += 1;
909
910     return AVPROBE_SCORE_EXTENSION + ret;
911 }
912
913 static int sgi_probe(const AVProbeData *p)
914 {
915     const uint8_t *b = p->buf;
916
917     if (AV_RB16(b) == 474 &&
918         (b[2] & ~1) == 0 &&
919         (b[3] & ~3) == 0 && b[3] &&
920         (AV_RB16(b + 4) & ~7) == 0 && AV_RB16(b + 4))
921         return AVPROBE_SCORE_EXTENSION + 1;
922     return 0;
923 }
924
925 static int sunrast_probe(const AVProbeData *p)
926 {
927     const uint8_t *b = p->buf;
928
929     if (AV_RB32(b) == 0x59a66a95)
930         return AVPROBE_SCORE_EXTENSION + 1;
931     return 0;
932 }
933
934 static int svg_probe(const AVProbeData *p)
935 {
936     const uint8_t *b = p->buf;
937     const uint8_t *end = p->buf + p->buf_size;
938
939     if (memcmp(p->buf, "<?xml", 5))
940         return 0;
941     while (b < end) {
942         int inc = ff_subtitles_next_line(b);
943         if (!inc)
944             break;
945         b += inc;
946         if (b >= end - 4)
947             return 0;
948         if (!memcmp(b, "<svg", 4))
949             return AVPROBE_SCORE_EXTENSION + 1;
950     }
951     return 0;
952 }
953
954 static int tiff_probe(const AVProbeData *p)
955 {
956     const uint8_t *b = p->buf;
957
958     if (AV_RB32(b) == 0x49492a00 ||
959         AV_RB32(b) == 0x4D4D002a)
960         return AVPROBE_SCORE_EXTENSION + 1;
961     return 0;
962 }
963
964 static int webp_probe(const AVProbeData *p)
965 {
966     const uint8_t *b = p->buf;
967
968     if (AV_RB32(b)     == 0x52494646 &&
969         AV_RB32(b + 8) == 0x57454250)
970         return AVPROBE_SCORE_MAX - 1;
971     return 0;
972 }
973
974 static int pnm_magic_check(const AVProbeData *p, int magic)
975 {
976     const uint8_t *b = p->buf;
977
978     return b[0] == 'P' && b[1] == magic + '0';
979 }
980
981 static inline int pnm_probe(const AVProbeData *p)
982 {
983     const uint8_t *b = p->buf;
984
985     while (b[2] == '\r')
986         b++;
987     if (b[2] == '\n' && (b[3] == '#' || (b[3] >= '0' && b[3] <= '9')))
988         return AVPROBE_SCORE_EXTENSION + 2;
989     return 0;
990 }
991
992 static int pbm_probe(const AVProbeData *p)
993 {
994     return pnm_magic_check(p, 1) || pnm_magic_check(p, 4) ? pnm_probe(p) : 0;
995 }
996
997 static inline int pgmx_probe(const AVProbeData *p)
998 {
999     return pnm_magic_check(p, 2) || pnm_magic_check(p, 5) ? pnm_probe(p) : 0;
1000 }
1001
1002 static int pgm_probe(const AVProbeData *p)
1003 {
1004     int ret = pgmx_probe(p);
1005     return ret && !av_match_ext(p->filename, "pgmyuv") ? ret : 0;
1006 }
1007
1008 static int pgmyuv_probe(const AVProbeData *p) // custom FFmpeg format recognized by file extension
1009 {
1010     int ret = pgmx_probe(p);
1011     return ret && av_match_ext(p->filename, "pgmyuv") ? ret : 0;
1012 }
1013
1014 static int pgx_probe(const AVProbeData *p)
1015 {
1016     const uint8_t *b = p->buf;
1017     if (!memcmp(b, "PG ML ", 6))
1018         return AVPROBE_SCORE_EXTENSION + 1;
1019     return 0;
1020 }
1021
1022 static int ppm_probe(const AVProbeData *p)
1023 {
1024     return pnm_magic_check(p, 3) || pnm_magic_check(p, 6) ? pnm_probe(p) : 0;
1025 }
1026
1027 static int pam_probe(const AVProbeData *p)
1028 {
1029     return pnm_magic_check(p, 7) ? pnm_probe(p) : 0;
1030 }
1031
1032 static int xpm_probe(const AVProbeData *p)
1033 {
1034     const uint8_t *b = p->buf;
1035
1036     if (AV_RB64(b) == 0x2f2a2058504d202a && *(b+8) == '/')
1037         return AVPROBE_SCORE_MAX - 1;
1038     return 0;
1039 }
1040
1041 static int xwd_probe(const AVProbeData *p)
1042 {
1043     const uint8_t *b = p->buf;
1044     unsigned width, bpp, bpad, lsize;
1045
1046     if (   p->buf_size < XWD_HEADER_SIZE
1047         || AV_RB32(b     ) < XWD_HEADER_SIZE                          // header size
1048         || AV_RB32(b +  4) != XWD_VERSION                             // version
1049         || AV_RB32(b +  8) != XWD_Z_PIXMAP                            // format
1050         || AV_RB32(b + 12) > 32 || !AV_RB32(b + 12)                   // depth
1051         || AV_RB32(b + 16) == 0                                       // width
1052         || AV_RB32(b + 20) == 0                                       // height
1053         || AV_RB32(b + 28) > 1                                        // byteorder
1054         || AV_RB32(b + 32) & ~56 || av_popcount(AV_RB32(b + 32)) != 1 // bitmap unit
1055         || AV_RB32(b + 36) > 1                                        // bitorder
1056         || AV_RB32(b + 40) & ~56 || av_popcount(AV_RB32(b + 40)) != 1 // padding
1057         || AV_RB32(b + 44) > 32 || !AV_RB32(b + 44)                   // bpp
1058         || AV_RB32(b + 68) > 256)                                     // colours
1059         return 0;
1060
1061     width = AV_RB32(b + 16);
1062     bpad  = AV_RB32(b + 40);
1063     bpp   = AV_RB32(b + 44);
1064     lsize = AV_RB32(b + 48);
1065     if (lsize < FFALIGN(width * bpp, bpad) >> 3)
1066         return 0;
1067
1068     return AVPROBE_SCORE_MAX / 2 + 1;
1069 }
1070
1071 static int gif_probe(const AVProbeData *p)
1072 {
1073     /* check magick */
1074     if (memcmp(p->buf, gif87a_sig, 6) && memcmp(p->buf, gif89a_sig, 6))
1075         return 0;
1076
1077     /* width or height contains zero? */
1078     if (!AV_RL16(&p->buf[6]) || !AV_RL16(&p->buf[8]))
1079         return 0;
1080
1081     return AVPROBE_SCORE_MAX - 1;
1082 }
1083
1084 static int photocd_probe(const AVProbeData *p)
1085 {
1086     if (!memcmp(p->buf, "PCD_OPA", 7))
1087         return AVPROBE_SCORE_MAX - 1;
1088
1089     if (p->buf_size < 0x807 || memcmp(p->buf + 0x800, "PCD_IPI", 7))
1090         return 0;
1091
1092     return AVPROBE_SCORE_MAX - 1;
1093 }
1094
1095 #define IMAGEAUTO_DEMUXER(imgname, codecid)\
1096 static const AVClass imgname ## _class = {\
1097     .class_name = AV_STRINGIFY(imgname) " demuxer",\
1098     .item_name  = av_default_item_name,\
1099     .option     = ff_img2pipe_options,\
1100     .version    = LIBAVUTIL_VERSION_INT,\
1101 };\
1102 AVInputFormat ff_image_ ## imgname ## _pipe_demuxer = {\
1103     .name           = AV_STRINGIFY(imgname) "_pipe",\
1104     .long_name      = NULL_IF_CONFIG_SMALL("piped " AV_STRINGIFY(imgname) " sequence"),\
1105     .priv_data_size = sizeof(VideoDemuxData),\
1106     .read_probe     = imgname ## _probe,\
1107     .read_header    = ff_img_read_header,\
1108     .read_packet    = ff_img_read_packet,\
1109     .priv_class     = & imgname ## _class,\
1110     .flags          = AVFMT_GENERIC_INDEX, \
1111     .raw_codec_id   = codecid,\
1112 };
1113
1114 IMAGEAUTO_DEMUXER(bmp,     AV_CODEC_ID_BMP)
1115 IMAGEAUTO_DEMUXER(cri,     AV_CODEC_ID_CRI)
1116 IMAGEAUTO_DEMUXER(dds,     AV_CODEC_ID_DDS)
1117 IMAGEAUTO_DEMUXER(dpx,     AV_CODEC_ID_DPX)
1118 IMAGEAUTO_DEMUXER(exr,     AV_CODEC_ID_EXR)
1119 IMAGEAUTO_DEMUXER(gif,     AV_CODEC_ID_GIF)
1120 IMAGEAUTO_DEMUXER(j2k,     AV_CODEC_ID_JPEG2000)
1121 IMAGEAUTO_DEMUXER(jpeg,    AV_CODEC_ID_MJPEG)
1122 IMAGEAUTO_DEMUXER(jpegls,  AV_CODEC_ID_JPEGLS)
1123 IMAGEAUTO_DEMUXER(pam,     AV_CODEC_ID_PAM)
1124 IMAGEAUTO_DEMUXER(pbm,     AV_CODEC_ID_PBM)
1125 IMAGEAUTO_DEMUXER(pcx,     AV_CODEC_ID_PCX)
1126 IMAGEAUTO_DEMUXER(pgm,     AV_CODEC_ID_PGM)
1127 IMAGEAUTO_DEMUXER(pgmyuv,  AV_CODEC_ID_PGMYUV)
1128 IMAGEAUTO_DEMUXER(pgx,     AV_CODEC_ID_PGX)
1129 IMAGEAUTO_DEMUXER(photocd, AV_CODEC_ID_PHOTOCD)
1130 IMAGEAUTO_DEMUXER(pictor,  AV_CODEC_ID_PICTOR)
1131 IMAGEAUTO_DEMUXER(png,     AV_CODEC_ID_PNG)
1132 IMAGEAUTO_DEMUXER(ppm,     AV_CODEC_ID_PPM)
1133 IMAGEAUTO_DEMUXER(psd,     AV_CODEC_ID_PSD)
1134 IMAGEAUTO_DEMUXER(qdraw,   AV_CODEC_ID_QDRAW)
1135 IMAGEAUTO_DEMUXER(sgi,     AV_CODEC_ID_SGI)
1136 IMAGEAUTO_DEMUXER(sunrast, AV_CODEC_ID_SUNRAST)
1137 IMAGEAUTO_DEMUXER(svg,     AV_CODEC_ID_SVG)
1138 IMAGEAUTO_DEMUXER(tiff,    AV_CODEC_ID_TIFF)
1139 IMAGEAUTO_DEMUXER(webp,    AV_CODEC_ID_WEBP)
1140 IMAGEAUTO_DEMUXER(xpm,     AV_CODEC_ID_XPM)
1141 IMAGEAUTO_DEMUXER(xwd,     AV_CODEC_ID_XWD)