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