forked from pool/audacity
Marcus Meissner
0197025f84
- Add patch audacity-ffmpeg.patch to build against current ffmpeg on PMBS. OBS-URL: https://build.opensuse.org/request/show/288759 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=75
30 lines
866 B
Diff
30 lines
866 B
Diff
--- src/FFmpeg.h.orig 2015-03-03 20:56:22.816742627 +0100
|
|
+++ src/FFmpeg.h 2015-03-03 20:56:22.851741975 +0100
|
|
@@ -688,7 +688,7 @@
|
|
FFMPEG_FUNCTION_WITH_RETURN(
|
|
AVOutputFormat*,
|
|
av_oformat_next,
|
|
- (AVOutputFormat *f),
|
|
+ (const AVOutputFormat *f),
|
|
(f)
|
|
);
|
|
FFMPEG_FUNCTION_WITH_RETURN(
|
|
@@ -755,7 +755,7 @@
|
|
FFMPEG_FUNCTION_WITH_RETURN(
|
|
int,
|
|
av_fifo_size,
|
|
- (AVFifoBuffer *f),
|
|
+ (const AVFifoBuffer *f),
|
|
(f)
|
|
);
|
|
FFMPEG_FUNCTION_WITH_RETURN(
|
|
@@ -801,7 +801,7 @@
|
|
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(
|