1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-21 00:35:05 +02:00

avformat/internal: Fix warning about struct declaration

Moving ffio_open2_wrapper() to internal as it uses AVFormatContext

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-05-12 03:20:49 +02:00
parent 3ecc063322
commit 59db9e6949
2 changed files with 3 additions and 3 deletions

View File

@ -157,7 +157,4 @@ int ffio_close_null_buf(AVIOContext *s);
*/
void ffio_free_dyn_buf(AVIOContext **s);
int ffio_open2_wrapper(struct AVFormatContext *s, AVIOContext **pb, const char *url, int flags,
const AVIOInterruptCB *int_cb, AVDictionary **options);
#endif /* AVFORMAT_AVIO_INTERNAL_H */

View File

@ -487,4 +487,7 @@ enum AVWriteUncodedFrameFlags {
*/
int ff_copy_whitelists(AVFormatContext *dst, AVFormatContext *src);
int ffio_open2_wrapper(struct AVFormatContext *s, AVIOContext **pb, const char *url, int flags,
const AVIOInterruptCB *int_cb, AVDictionary **options);
#endif /* AVFORMAT_INTERNAL_H */