-
- Downloads
lavf: allow custom IO for all files
Some (de)muxers open additional files beyond the main IO context. Currently, they call avio_open() directly, which prevents the caller from using custom IO for such streams. This commit adds callbacks to AVFormatContext that default to avio_open2()/avio_close(), but can be overridden by the caller. All muxers and demuxers using AVIO are switched to using those callbacks instead of calling avio_open()/avio_close() directly. (de)muxers that use the URLProtocol layer directly instead of AVIO remain unconverted for now. This should be fixed in later commits.
Showing
- doc/APIchanges 4 additions, 0 deletionsdoc/APIchanges
- libavformat/avformat.h 33 additions, 0 deletionslibavformat/avformat.h
- libavformat/dashenc.c 5 additions, 2 deletionslibavformat/dashenc.c
- libavformat/hdsenc.c 10 additions, 15 deletionslibavformat/hdsenc.c
- libavformat/hls.c 4 additions, 2 deletionslibavformat/hls.c
- libavformat/hlsenc.c 8 additions, 7 deletionslibavformat/hlsenc.c
- libavformat/img2dec.c 2 additions, 3 deletionslibavformat/img2dec.c
- libavformat/img2enc.c 4 additions, 5 deletionslibavformat/img2enc.c
- libavformat/internal.h 6 additions, 0 deletionslibavformat/internal.h
- libavformat/mov.c 5 additions, 5 deletionslibavformat/mov.c
- libavformat/movenc.c 2 additions, 2 deletionslibavformat/movenc.c
- libavformat/options.c 14 additions, 0 deletionslibavformat/options.c
- libavformat/segment.c 17 additions, 18 deletionslibavformat/segment.c
- libavformat/smoothstreamingenc.c 9 additions, 9 deletionslibavformat/smoothstreamingenc.c
- libavformat/utils.c 7 additions, 0 deletionslibavformat/utils.c
Loading
Please register or sign in to comment