Browse Source

avformat/img2dec: Use AVOpenCallback

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.0
Michael Niedermayer 10 years ago
parent
commit
b750b67d13
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      libavformat/img2dec.c

+ 5
- 1
libavformat/img2dec.c View File

@@ -377,6 +377,10 @@ int ff_img_read_packet(AVFormatContext *s1, AVPacket *pkt)
int size[3] = { 0 }, ret[3] = { 0 };
AVIOContext *f[3] = { NULL };
AVCodecContext *codec = s1->streams[0]->codec;
AVOpenCallback open_func = s1->open_cb;

if (!open_func)
open_func = ffio_open2_wrapper;

if (!s->is_pipe) {
/* loop over input */
@@ -403,7 +407,7 @@ int ff_img_read_packet(AVFormatContext *s1, AVPacket *pkt)
!s->loop &&
!s->split_planes) {
f[i] = s1->pb;
} else if (avio_open2(&f[i], filename, AVIO_FLAG_READ,
} else if (open_func(s1, &f[i], filename, AVIO_FLAG_READ,
&s1->interrupt_callback, NULL) < 0) {
if (i >= 1)
break;


Loading…
Cancel
Save