2016-06-27 18:49:59 +00:00
|
|
|
Index: src/FFmpeg.h
|
|
|
|
===================================================================
|
|
|
|
--- src/FFmpeg.h.orig
|
|
|
|
+++ src/FFmpeg.h
|
|
|
|
@@ -689,7 +689,7 @@ extern "C" {
|
2015-03-05 09:05:43 +00:00
|
|
|
FFMPEG_FUNCTION_WITH_RETURN(
|
|
|
|
AVOutputFormat*,
|
|
|
|
av_oformat_next,
|
|
|
|
- (AVOutputFormat *f),
|
|
|
|
+ (const AVOutputFormat *f),
|
|
|
|
(f)
|
|
|
|
);
|
|
|
|
FFMPEG_FUNCTION_WITH_RETURN(
|
2016-06-27 18:49:59 +00:00
|
|
|
@@ -756,7 +756,7 @@ extern "C" {
|
2015-03-05 09:05:43 +00:00
|
|
|
FFMPEG_FUNCTION_WITH_RETURN(
|
|
|
|
int,
|
|
|
|
av_fifo_size,
|
|
|
|
- (AVFifoBuffer *f),
|
|
|
|
+ (const AVFifoBuffer *f),
|
|
|
|
(f)
|
|
|
|
);
|
|
|
|
FFMPEG_FUNCTION_WITH_RETURN(
|
2016-06-27 18:49:59 +00:00
|
|
|
@@ -802,7 +802,7 @@ extern "C" {
|
2015-03-05 09:05:43 +00:00
|
|
|
FFMPEG_FUNCTION_WITH_RETURN(
|
|
|
|
AVDictionaryEntry *,
|
|
|
|
av_dict_get,
|
|
|
|
- (AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags),
|
|
|
|
+ (const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags),
|
|
|
|
(m, key, prev, flags)
|
|
|
|
);
|
|
|
|
FFMPEG_FUNCTION_WITH_RETURN(
|