View | Details | Raw Unified | Return to bug 201589 | Differences between
and this patch

Collapse All | Expand All

(-)src/FFmpeg.h (-3 / +3 lines)
Lines 688-694 Link Here
688
   FFMPEG_FUNCTION_WITH_RETURN(
688
   FFMPEG_FUNCTION_WITH_RETURN(
689
      AVOutputFormat*,
689
      AVOutputFormat*,
690
      av_oformat_next,
690
      av_oformat_next,
691
      (AVOutputFormat *f),
691
      (const AVOutputFormat *f),
692
      (f)
692
      (f)
693
   );
693
   );
694
   FFMPEG_FUNCTION_WITH_RETURN(
694
   FFMPEG_FUNCTION_WITH_RETURN(
Lines 755-761 Link Here
755
   FFMPEG_FUNCTION_WITH_RETURN(
755
   FFMPEG_FUNCTION_WITH_RETURN(
756
      int,
756
      int,
757
      av_fifo_size,
757
      av_fifo_size,
758
      (AVFifoBuffer *f),
758
      (const AVFifoBuffer *f),
759
      (f)
759
      (f)
760
   );
760
   );
761
   FFMPEG_FUNCTION_WITH_RETURN(
761
   FFMPEG_FUNCTION_WITH_RETURN(
Lines 801-807 Link Here
801
   FFMPEG_FUNCTION_WITH_RETURN(
801
   FFMPEG_FUNCTION_WITH_RETURN(
802
      AVDictionaryEntry *,
802
      AVDictionaryEntry *,
803
      av_dict_get,
803
      av_dict_get,
804
      (AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags),
804
      (const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags),
805
      (m, key, prev, flags)
805
      (m, key, prev, flags)
806
   );
806
   );
807
   FFMPEG_FUNCTION_WITH_RETURN(
807
   FFMPEG_FUNCTION_WITH_RETURN(

Return to bug 201589