ffmpeg.patch 984 B

12345678910111213141516171819202122232425262728293031
  1. diff -Naur audacity-src-2.0.6-orig/src/FFmpeg.h audacity-src-2.0.6/src/FFmpeg.h
  2. --- audacity-src-2.0.6-orig/src/FFmpeg.h 2014-09-28 21:54:55.159636208 -0400
  3. +++ audacity-src-2.0.6/src/FFmpeg.h 2014-09-28 21:55:11.246276766 -0400
  4. @@ -688,7 +688,7 @@
  5. FFMPEG_FUNCTION_WITH_RETURN(
  6. AVOutputFormat*,
  7. av_oformat_next,
  8. - (AVOutputFormat *f),
  9. + (const AVOutputFormat *f),
  10. (f)
  11. );
  12. FFMPEG_FUNCTION_WITH_RETURN(
  13. @@ -755,7 +755,7 @@
  14. FFMPEG_FUNCTION_WITH_RETURN(
  15. int,
  16. av_fifo_size,
  17. - (AVFifoBuffer *f),
  18. + (const AVFifoBuffer *f),
  19. (f)
  20. );
  21. FFMPEG_FUNCTION_WITH_RETURN(
  22. @@ -801,7 +801,7 @@
  23. FFMPEG_FUNCTION_WITH_RETURN(
  24. AVDictionaryEntry *,
  25. av_dict_get,
  26. - (AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags),
  27. + (const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags),
  28. (m, key, prev, flags)
  29. );
  30. FFMPEG_FUNCTION_WITH_RETURN(