Commit e0f32286 authored by Josh de Kock's avatar Josh de Kock

lavf/img2dec: use new iteration API

Signed-off-by: 's avatarJosh de Kock <josh@itanimul.li>
parent 89029bd2
...@@ -323,7 +323,8 @@ int ff_img_read_header(AVFormatContext *s1) ...@@ -323,7 +323,8 @@ int ff_img_read_header(AVFormatContext *s1)
if (s1->pb) { if (s1->pb) {
int probe_buffer_size = 2048; int probe_buffer_size = 2048;
uint8_t *probe_buffer = av_realloc(NULL, probe_buffer_size + AVPROBE_PADDING_SIZE); uint8_t *probe_buffer = av_realloc(NULL, probe_buffer_size + AVPROBE_PADDING_SIZE);
AVInputFormat *fmt = NULL; const AVInputFormat *fmt = NULL;
void *fmt_iter = NULL;
AVProbeData pd = { 0 }; AVProbeData pd = { 0 };
if (!probe_buffer) if (!probe_buffer)
...@@ -340,7 +341,7 @@ int ff_img_read_header(AVFormatContext *s1) ...@@ -340,7 +341,7 @@ int ff_img_read_header(AVFormatContext *s1)
pd.buf_size = probe_buffer_size; pd.buf_size = probe_buffer_size;
pd.filename = s1->url; pd.filename = s1->url;
while ((fmt = av_iformat_next(fmt))) { while ((fmt = av_demuxer_iterate(&fmt_iter))) {
if (fmt->read_header != ff_img_read_header || if (fmt->read_header != ff_img_read_header ||
!fmt->read_probe || !fmt->read_probe ||
(fmt->flags & AVFMT_NOFILE) || (fmt->flags & AVFMT_NOFILE) ||
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment