summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-12 12:37:13 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-12 12:38:20 +0100
commit22af79a9c88f8bfaa8c4130c8f58c5bff20e1a1f (patch)
tree1a56136338c010c748cb9a084e82f987b3badd3b /libavformat
parent7d63f10c37cd9327c39ae4e3e7ec389c08b87390 (diff)
parentb97f427fb56bdbf7de8e2d4b72d01114aa6eceda (diff)
Merge commit 'b97f427fb56bdbf7de8e2d4b72d01114aa6eceda'
* commit 'b97f427fb56bdbf7de8e2d4b72d01114aa6eceda': lavf: Explicitly convert types at function pointer assignment Conflicts: libavformat/avio.c libavformat/aviobuf.c libavformat/swfenc.c See: a76a2ffe9d7773d59bb1bc228a6660e23672c490 and others Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/avio.c4
-rw-r--r--libavformat/aviobuf.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/libavformat/avio.c b/libavformat/avio.c
index 326bb0aa78..4896782072 100644
--- a/libavformat/avio.c
+++ b/libavformat/avio.c
@@ -349,7 +349,9 @@ int ffurl_write(URLContext *h, const unsigned char *buf, int size)
if (h->max_packet_size && size > h->max_packet_size)
return AVERROR(EIO);
- return retry_transfer_wrapper(h, (unsigned char *)buf, size, size, (void*)h->prot->url_write);
+ return retry_transfer_wrapper(h, (unsigned char *)buf, size, size,
+ (int (*)(struct URLContext *, uint8_t *, int))
+ h->prot->url_write);
}
int64_t ffurl_seek(URLContext *h, int64_t pos, int whence)
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index 537c11f6b4..7de59f10f3 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -778,7 +778,9 @@ int ffio_fdopen(AVIOContext **s, URLContext *h)
return AVERROR(ENOMEM);
*s = avio_alloc_context(buffer, buffer_size, h->flags & AVIO_FLAG_WRITE, h,
- (void*)ffurl_read, (void*)ffurl_write, (void*)ffurl_seek);
+ (int (*)(void *, uint8_t *, int)) ffurl_read,
+ (int (*)(void *, uint8_t *, int)) ffurl_write,
+ (int64_t (*)(void *, int64_t, int)) ffurl_seek);
if (!*s) {
av_free(buffer);
return AVERROR(ENOMEM);