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