3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4 * Copyright (c) 2004 Michael Niedermayer
6 * This file is part of FFmpeg.
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.
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.
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
23 #define _DEFAULT_SOURCE
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"
33 #include "avio_internal.h"
38 /* Locally define as 0 (bitwise-OR no-op) any missing glob options that
39 are non-posix glibc/bsd extensions. */
41 #define GLOB_NOMAGIC 0
47 #endif /* HAVE_GLOB */
49 static const int sizes[][2] = {
61 static int infer_size(int *width_ptr, int *height_ptr, int size)
65 for (i = 0; i < FF_ARRAY_ELEMS(sizes); i++) {
66 if ((sizes[i][0] * sizes[i][1]) == size) {
67 *width_ptr = sizes[i][0];
68 *height_ptr = sizes[i][1];
76 static int is_glob(const char *path)
82 while (p = strchr(p, '%')) {
87 if (span = strspn(p, "*?[]{}"))
90 /* Did we hit a glob char or get to the end? */
98 * Get index range of image files matched by path.
100 * @param pfirst_index pointer to index updated with the first number in the range
101 * @param plast_index pointer to index updated with the last number in the range
102 * @param path path which has to be matched by the image files in the range
103 * @param start_index minimum accepted value for the first index in the range
104 * @return -1 if no image file could be found
106 static int find_image_range(AVIOContext *pb, int *pfirst_index, int *plast_index,
107 const char *path, int start_index, int start_index_range)
110 int range, last_index, range1, first_index;
112 /* find the first image */
113 for (first_index = start_index; first_index < start_index + start_index_range; first_index++) {
114 if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0) {
117 if (pb || avio_check(buf, AVIO_FLAG_READ) > 0)
121 if (avio_check(buf, AVIO_FLAG_READ) > 0)
124 if (first_index == start_index + start_index_range)
127 /* find the last image */
128 last_index = first_index;
136 if (av_get_frame_filename(buf, sizeof(buf), path,
137 last_index + range1) < 0)
139 if (avio_check(buf, AVIO_FLAG_READ) <= 0)
142 /* just in case... */
143 if (range >= (1 << 30))
146 /* we are sure than image last_index + range exists */
151 *pfirst_index = first_index;
152 *plast_index = last_index;
159 static int img_read_probe(AVProbeData *p)
161 if (p->filename && ff_guess_image2_codec(p->filename)) {
162 if (av_filename_number_test(p->filename))
163 return AVPROBE_SCORE_MAX;
164 else if (is_glob(p->filename))
165 return AVPROBE_SCORE_MAX;
166 else if (p->filename[strcspn(p->filename, "*?{")]) // probably PT_GLOB
167 return AVPROBE_SCORE_EXTENSION + 2; // score chosen to be a tad above the image pipes
168 else if (p->buf_size == 0)
170 else if (av_match_ext(p->filename, "raw") || av_match_ext(p->filename, "gif"))
173 return AVPROBE_SCORE_EXTENSION;
178 int ff_img_read_header(AVFormatContext *s1)
180 VideoDemuxData *s = s1->priv_data;
181 int first_index = 1, last_index = 1;
183 enum AVPixelFormat pix_fmt = AV_PIX_FMT_NONE;
185 s1->ctx_flags |= AVFMTCTX_NOHEADER;
187 st = avformat_new_stream(s1, NULL);
189 return AVERROR(ENOMEM);
192 if (s->pixel_format &&
193 (pix_fmt = av_get_pix_fmt(s->pixel_format)) == AV_PIX_FMT_NONE) {
194 av_log(s1, AV_LOG_ERROR, "No such pixel format: %s.\n",
196 return AVERROR(EINVAL);
199 av_strlcpy(s->path, s1->filename, sizeof(s->path));
204 if (s1->iformat->flags & AVFMT_NOFILE)
208 st->need_parsing = AVSTREAM_PARSE_FULL;
211 if (s->ts_from_file == 2) {
212 #if !HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
213 av_log(s1, AV_LOG_ERROR, "POSIX.1-2008 not supported, nanosecond file timestamps unavailable\n");
214 return AVERROR(ENOSYS);
216 avpriv_set_pts_info(st, 64, 1, 1000000000);
217 } else if (s->ts_from_file)
218 avpriv_set_pts_info(st, 64, 1, 1);
220 avpriv_set_pts_info(st, 64, s->framerate.den, s->framerate.num);
222 if (s->width && s->height) {
223 st->codec->width = s->width;
224 st->codec->height = s->height;
228 if (s->pattern_type == PT_GLOB_SEQUENCE) {
229 s->use_glob = is_glob(s->path);
232 char *p = s->path, *q, *dup;
236 av_log(s1, AV_LOG_WARNING, "Pattern type 'glob_sequence' is deprecated: "
237 "use pattern_type 'glob' instead\n");
239 dup = q = av_strdup(p);
241 /* Do we have room for the next char and a \ insertion? */
242 if ((p - s->path) >= (sizeof(s->path) - 2))
244 if (*q == '%' && strspn(q + 1, "%*?[]{}"))
246 else if (strspn(q, "\\*?[]{}"))
253 gerr = glob(s->path, GLOB_NOCHECK|GLOB_BRACE|GLOB_NOMAGIC, NULL, &s->globstate);
255 return AVERROR(ENOENT);
258 last_index = s->globstate.gl_pathc - 1;
262 if ((s->pattern_type == PT_GLOB_SEQUENCE && !s->use_glob) || s->pattern_type == PT_SEQUENCE) {
263 if (find_image_range(s1->pb, &first_index, &last_index, s->path,
264 s->start_number, s->start_number_range) < 0) {
265 av_log(s1, AV_LOG_ERROR,
266 "Could find no file with path '%s' and index in the range %d-%d\n",
267 s->path, s->start_number, s->start_number + s->start_number_range - 1);
268 return AVERROR(ENOENT);
270 } else if (s->pattern_type == PT_GLOB) {
273 gerr = glob(s->path, GLOB_NOCHECK|GLOB_BRACE|GLOB_NOMAGIC, NULL, &s->globstate);
275 return AVERROR(ENOENT);
278 last_index = s->globstate.gl_pathc - 1;
281 av_log(s1, AV_LOG_ERROR,
282 "Pattern type 'glob' was selected but globbing "
283 "is not supported by this libavformat build\n");
284 return AVERROR(ENOSYS);
286 } else if (s->pattern_type != PT_GLOB_SEQUENCE && s->pattern_type != PT_NONE) {
287 av_log(s1, AV_LOG_ERROR,
288 "Unknown value '%d' for pattern_type option\n", s->pattern_type);
289 return AVERROR(EINVAL);
291 s->img_first = first_index;
292 s->img_last = last_index;
293 s->img_number = first_index;
294 /* compute duration */
295 if (!s->ts_from_file) {
297 st->duration = last_index - first_index + 1;
301 if (s1->video_codec_id) {
302 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
303 st->codec->codec_id = s1->video_codec_id;
304 } else if (s1->audio_codec_id) {
305 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
306 st->codec->codec_id = s1->audio_codec_id;
307 } else if (s1->iformat->raw_codec_id) {
308 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
309 st->codec->codec_id = s1->iformat->raw_codec_id;
311 const char *str = strrchr(s->path, '.');
312 s->split_planes = str && !av_strcasecmp(str + 1, "y");
313 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
315 int probe_buffer_size = 2048;
316 uint8_t *probe_buffer = av_realloc(NULL, probe_buffer_size + AVPROBE_PADDING_SIZE);
317 AVInputFormat *fmt = NULL;
318 AVProbeData pd = { 0 };
321 return AVERROR(ENOMEM);
323 probe_buffer_size = avio_read(s1->pb, probe_buffer, probe_buffer_size);
324 if (probe_buffer_size < 0) {
325 av_free(probe_buffer);
326 return probe_buffer_size;
328 memset(probe_buffer + probe_buffer_size, 0, AVPROBE_PADDING_SIZE);
330 pd.buf = probe_buffer;
331 pd.buf_size = probe_buffer_size;
332 pd.filename = s1->filename;
334 while ((fmt = av_iformat_next(fmt))) {
335 if (fmt->read_header != ff_img_read_header ||
337 (fmt->flags & AVFMT_NOFILE) ||
340 if (fmt->read_probe(&pd) > 0) {
341 st->codec->codec_id = fmt->raw_codec_id;
345 if (s1->flags & AVFMT_FLAG_CUSTOM_IO) {
346 avio_seek(s1->pb, 0, SEEK_SET);
348 ffio_rewind_with_probe_data(s1->pb, &probe_buffer, probe_buffer_size);
350 if (st->codec->codec_id == AV_CODEC_ID_NONE)
351 st->codec->codec_id = ff_guess_image2_codec(s->path);
352 if (st->codec->codec_id == AV_CODEC_ID_LJPEG)
353 st->codec->codec_id = AV_CODEC_ID_MJPEG;
354 if (st->codec->codec_id == AV_CODEC_ID_ALIAS_PIX) // we cannot distingiush this from BRENDER_PIX
355 st->codec->codec_id = AV_CODEC_ID_NONE;
357 if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
358 pix_fmt != AV_PIX_FMT_NONE)
359 st->codec->pix_fmt = pix_fmt;
364 int ff_img_read_packet(AVFormatContext *s1, AVPacket *pkt)
366 VideoDemuxData *s = s1->priv_data;
367 char filename_bytes[1024];
368 char *filename = filename_bytes;
370 int size[3] = { 0 }, ret[3] = { 0 };
371 AVIOContext *f[3] = { NULL };
372 AVCodecContext *codec = s1->streams[0]->codec;
375 /* loop over input */
376 if (s->loop && s->img_number > s->img_last) {
377 s->img_number = s->img_first;
379 if (s->img_number > s->img_last)
381 if (s->pattern_type == PT_NONE) {
382 av_strlcpy(filename_bytes, s->path, sizeof(filename_bytes));
383 } else if (s->use_glob) {
385 filename = s->globstate.gl_pathv[s->img_number];
388 if (av_get_frame_filename(filename_bytes, sizeof(filename_bytes),
390 s->img_number) < 0 && s->img_number > 1)
393 for (i = 0; i < 3; i++) {
395 !strcmp(filename_bytes, s->path) &&
399 } else if (avio_open2(&f[i], filename, AVIO_FLAG_READ,
400 &s1->interrupt_callback, NULL) < 0) {
403 av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",
407 size[i] = avio_size(f[i]);
409 if (!s->split_planes)
411 filename[strlen(filename) - 1] = 'U' + i;
414 if (codec->codec_id == AV_CODEC_ID_NONE) {
415 AVProbeData pd = { 0 };
417 uint8_t header[PROBE_BUF_MIN + AVPROBE_PADDING_SIZE];
421 ret = avio_read(f[0], header, PROBE_BUF_MIN);
424 memset(header + ret, 0, sizeof(header) - ret);
425 avio_skip(f[0], -ret);
428 pd.filename = filename;
430 ifmt = av_probe_input_format3(&pd, 1, &score);
431 if (ifmt && ifmt->read_packet == ff_img_read_packet && ifmt->raw_codec_id)
432 codec->codec_id = ifmt->raw_codec_id;
435 if (codec->codec_id == AV_CODEC_ID_RAWVIDEO && !codec->width)
436 infer_size(&codec->width, &codec->height, size[0]);
439 if (avio_feof(f[0]) && s->loop && s->is_pipe)
440 avio_seek(f[0], 0, SEEK_SET);
443 if (s->frame_size > 0) {
444 size[0] = s->frame_size;
445 } else if (!s1->streams[0]->parser) {
446 size[0] = avio_size(s1->pb);
452 res = av_new_packet(pkt, size[0] + size[1] + size[2]);
456 pkt->stream_index = 0;
457 pkt->flags |= AV_PKT_FLAG_KEY;
458 if (s->ts_from_file) {
459 struct stat img_stat;
460 if (stat(filename, &img_stat)) {
464 pkt->pts = (int64_t)img_stat.st_mtime;
465 #if HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
466 if (s->ts_from_file == 2)
467 pkt->pts = 1000000000*pkt->pts + img_stat.st_mtim.tv_nsec;
469 av_add_index_entry(s1->streams[0], s->img_number, pkt->pts, 0, 0, AVINDEX_KEYFRAME);
470 } else if (!s->is_pipe) {
475 pkt->pos = avio_tell(f[0]);
478 for (i = 0; i < 3; i++) {
480 ret[i] = avio_read(f[i], pkt->data + pkt->size, size[i]);
481 if (s->loop && s->is_pipe && ret[i] == AVERROR_EOF) {
482 if (avio_seek(f[i], 0, SEEK_SET) >= 0) {
484 ret[i] = avio_read(f[i], pkt->data + pkt->size, size[i]);
487 if (!s->is_pipe && f[i] != s1->pb)
494 if (ret[0] <= 0 || ret[1] < 0 || ret[2] < 0) {
495 av_packet_unref(pkt);
498 } else if (ret[1] < 0) {
500 } else if (ret[2] < 0) {
515 for (i = 0; i < 3; i++) {
523 static int img_read_close(struct AVFormatContext* s1)
526 VideoDemuxData *s = s1->priv_data;
528 globfree(&s->globstate);
534 static int img_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
536 VideoDemuxData *s1 = s->priv_data;
537 AVStream *st = s->streams[0];
539 if (s1->ts_from_file) {
540 int index = av_index_search_timestamp(st, timestamp, flags);
543 s1->img_number = st->index_entries[index].pos;
547 if (timestamp < 0 || !s1->loop && timestamp > s1->img_last - s1->img_first)
549 s1->img_number = timestamp%(s1->img_last - s1->img_first + 1) + s1->img_first;
554 #define OFFSET(x) offsetof(VideoDemuxData, x)
555 #define DEC AV_OPT_FLAG_DECODING_PARAM
556 const AVOption ff_img_options[] = {
557 { "framerate", "set the video framerate", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, 0, DEC },
558 { "loop", "force loop over input file sequence", OFFSET(loop), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, DEC },
560 { "pattern_type", "set pattern type", OFFSET(pattern_type), AV_OPT_TYPE_INT, {.i64=PT_GLOB_SEQUENCE}, 0, INT_MAX, DEC, "pattern_type"},
561 { "glob_sequence","select glob/sequence pattern type", 0, AV_OPT_TYPE_CONST, {.i64=PT_GLOB_SEQUENCE}, INT_MIN, INT_MAX, DEC, "pattern_type" },
562 { "glob", "select glob pattern type", 0, AV_OPT_TYPE_CONST, {.i64=PT_GLOB }, INT_MIN, INT_MAX, DEC, "pattern_type" },
563 { "sequence", "select sequence pattern type", 0, AV_OPT_TYPE_CONST, {.i64=PT_SEQUENCE }, INT_MIN, INT_MAX, DEC, "pattern_type" },
564 { "none", "disable pattern matching", 0, AV_OPT_TYPE_CONST, {.i64=PT_NONE }, INT_MIN, INT_MAX, DEC, "pattern_type" },
566 { "pixel_format", "set video pixel format", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
567 { "start_number", "set first number in the sequence", OFFSET(start_number), AV_OPT_TYPE_INT, {.i64 = 0 }, INT_MIN, INT_MAX, DEC },
568 { "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 },
569 { "video_size", "set video size", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, DEC },
570 { "frame_size", "force frame size in bytes", OFFSET(frame_size), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, DEC },
571 { "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" },
572 { "none", "none", 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 2, DEC, "ts_type" },
573 { "sec", "second precision", 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 2, DEC, "ts_type" },
574 { "ns", "nano second precision", 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 2, DEC, "ts_type" },
578 #if CONFIG_IMAGE2_DEMUXER
579 static const AVClass img2_class = {
580 .class_name = "image2 demuxer",
581 .item_name = av_default_item_name,
582 .option = ff_img_options,
583 .version = LIBAVUTIL_VERSION_INT,
585 AVInputFormat ff_image2_demuxer = {
587 .long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
588 .priv_data_size = sizeof(VideoDemuxData),
589 .read_probe = img_read_probe,
590 .read_header = ff_img_read_header,
591 .read_packet = ff_img_read_packet,
592 .read_close = img_read_close,
593 .read_seek = img_read_seek,
594 .flags = AVFMT_NOFILE,
595 .priv_class = &img2_class,
598 #if CONFIG_IMAGE2PIPE_DEMUXER
599 static const AVClass img2pipe_class = {
600 .class_name = "image2pipe demuxer",
601 .item_name = av_default_item_name,
602 .option = ff_img_options,
603 .version = LIBAVUTIL_VERSION_INT,
605 AVInputFormat ff_image2pipe_demuxer = {
606 .name = "image2pipe",
607 .long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
608 .priv_data_size = sizeof(VideoDemuxData),
609 .read_header = ff_img_read_header,
610 .read_packet = ff_img_read_packet,
611 .priv_class = &img2pipe_class,
615 static int bmp_probe(AVProbeData *p)
617 const uint8_t *b = p->buf;
620 if (AV_RB16(b) != 0x424d)
623 ihsize = AV_RL32(b+14);
624 if (ihsize < 12 || ihsize > 255)
627 if (!AV_RN32(b + 6)) {
628 return AVPROBE_SCORE_EXTENSION + 1;
630 return AVPROBE_SCORE_EXTENSION / 4;
633 static int dds_probe(AVProbeData *p)
635 const uint8_t *b = p->buf;
637 if ( AV_RB64(b) == 0x444453207c000000
640 return AVPROBE_SCORE_MAX - 1;
644 static int dpx_probe(AVProbeData *p)
646 const uint8_t *b = p->buf;
648 int is_big = (AV_RN32(b) == AV_RN32("SDPX"));
650 if (p->buf_size < 0x304+8)
652 w = is_big ? AV_RB32(p->buf + 0x304) : AV_RL32(p->buf + 0x304);
653 h = is_big ? AV_RB32(p->buf + 0x308) : AV_RL32(p->buf + 0x308);
654 if (w <= 0 || h <= 0)
657 if (is_big || AV_RN32(b) == AV_RN32("XPDS"))
658 return AVPROBE_SCORE_EXTENSION + 1;
662 static int exr_probe(AVProbeData *p)
664 const uint8_t *b = p->buf;
666 if (AV_RL32(b) == 20000630)
667 return AVPROBE_SCORE_EXTENSION + 1;
671 static int j2k_probe(AVProbeData *p)
673 const uint8_t *b = p->buf;
675 if (AV_RB64(b) == 0x0000000c6a502020 ||
676 AV_RB32(b) == 0xff4fff51)
677 return AVPROBE_SCORE_EXTENSION + 1;
681 static int jpeg_probe(AVProbeData *p)
683 const uint8_t *b = p->buf;
686 if (AV_RB16(b) != 0xFFD8 ||
687 AV_RB32(b) == 0xFFD8FFF7)
691 for (i = 0; i < p->buf_size - 3; i++) {
736 i += AV_RB16(&b[i + 2]) + 1;
739 if ( (c >= 0x02 && c <= 0xBF)
746 return AVPROBE_SCORE_EXTENSION + 1;
747 return AVPROBE_SCORE_EXTENSION / 8;
750 static int jpegls_probe(AVProbeData *p)
752 const uint8_t *b = p->buf;
754 if (AV_RB32(b) == 0xffd8fff7)
755 return AVPROBE_SCORE_EXTENSION + 1;
759 static int qdraw_probe(AVProbeData *p)
761 const uint8_t *b = p->buf;
763 if ( p->buf_size >= 528
764 && (AV_RB64(b + 520) & 0xFFFFFFFFFFFF) == 0x001102ff0c00
767 return AVPROBE_SCORE_MAX * 3 / 4;
768 if ( (AV_RB64(b + 8) & 0xFFFFFFFFFFFF) == 0x001102ff0c00
771 return AVPROBE_SCORE_EXTENSION / 4;
775 static int pictor_probe(AVProbeData *p)
777 const uint8_t *b = p->buf;
779 if (AV_RL16(b) == 0x1234)
780 return AVPROBE_SCORE_EXTENSION / 4;
784 static int png_probe(AVProbeData *p)
786 const uint8_t *b = p->buf;
788 if (AV_RB64(b) == 0x89504e470d0a1a0a)
789 return AVPROBE_SCORE_MAX - 1;
793 static int sgi_probe(AVProbeData *p)
795 const uint8_t *b = p->buf;
797 if (AV_RB16(b) == 474 &&
799 (b[3] & ~3) == 0 && b[3] &&
800 (AV_RB16(b + 4) & ~7) == 0 && AV_RB16(b + 4))
801 return AVPROBE_SCORE_EXTENSION + 1;
805 static int sunrast_probe(AVProbeData *p)
807 const uint8_t *b = p->buf;
809 if (AV_RB32(b) == 0x59a66a95)
810 return AVPROBE_SCORE_EXTENSION + 1;
814 static int tiff_probe(AVProbeData *p)
816 const uint8_t *b = p->buf;
818 if (AV_RB32(b) == 0x49492a00 ||
819 AV_RB32(b) == 0x4D4D002a)
820 return AVPROBE_SCORE_EXTENSION + 1;
824 static int webp_probe(AVProbeData *p)
826 const uint8_t *b = p->buf;
828 if (AV_RB32(b) == 0x52494646 &&
829 AV_RB32(b + 8) == 0x57454250)
830 return AVPROBE_SCORE_MAX - 1;
834 #define IMAGEAUTO_DEMUXER(imgname, codecid)\
835 static const AVClass imgname ## _class = {\
836 .class_name = AV_STRINGIFY(imgname) " demuxer",\
837 .item_name = av_default_item_name,\
838 .option = ff_img_options,\
839 .version = LIBAVUTIL_VERSION_INT,\
841 AVInputFormat ff_image_ ## imgname ## _pipe_demuxer = {\
842 .name = AV_STRINGIFY(imgname) "_pipe",\
843 .long_name = NULL_IF_CONFIG_SMALL("piped " AV_STRINGIFY(imgname) " sequence"),\
844 .priv_data_size = sizeof(VideoDemuxData),\
845 .read_probe = imgname ## _probe,\
846 .read_header = ff_img_read_header,\
847 .read_packet = ff_img_read_packet,\
848 .priv_class = & imgname ## _class,\
849 .flags = AVFMT_GENERIC_INDEX, \
850 .raw_codec_id = codecid,\
853 IMAGEAUTO_DEMUXER(bmp, AV_CODEC_ID_BMP)
854 IMAGEAUTO_DEMUXER(dds, AV_CODEC_ID_DDS)
855 IMAGEAUTO_DEMUXER(dpx, AV_CODEC_ID_DPX)
856 IMAGEAUTO_DEMUXER(exr, AV_CODEC_ID_EXR)
857 IMAGEAUTO_DEMUXER(j2k, AV_CODEC_ID_JPEG2000)
858 IMAGEAUTO_DEMUXER(jpeg, AV_CODEC_ID_MJPEG)
859 IMAGEAUTO_DEMUXER(jpegls, AV_CODEC_ID_JPEGLS)
860 IMAGEAUTO_DEMUXER(pictor, AV_CODEC_ID_PICTOR)
861 IMAGEAUTO_DEMUXER(png, AV_CODEC_ID_PNG)
862 IMAGEAUTO_DEMUXER(qdraw, AV_CODEC_ID_QDRAW)
863 IMAGEAUTO_DEMUXER(sgi, AV_CODEC_ID_SGI)
864 IMAGEAUTO_DEMUXER(sunrast, AV_CODEC_ID_SUNRAST)
865 IMAGEAUTO_DEMUXER(tiff, AV_CODEC_ID_TIFF)
866 IMAGEAUTO_DEMUXER(webp, AV_CODEC_ID_WEBP)