diff options
author | Alexis Ballier <aballier@gentoo.org> | 2015-09-15 14:15:39 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2015-09-15 14:15:50 +0200 |
commit | a59351a243cc55ff56ab15895b16356846cbe0ca (patch) | |
tree | f574f13e73c11dfd3e07121297de3e52660683c3 /media-libs/xine-lib/files | |
parent | dev-util/pycharm-community: Version bump, drop old. (diff) | |
download | gentoo-a59351a243cc55ff56ab15895b16356846cbe0ca.tar.gz gentoo-a59351a243cc55ff56ab15895b16356846cbe0ca.tar.bz2 gentoo-a59351a243cc55ff56ab15895b16356846cbe0ca.zip |
media-libs/xine-lib: fix build with ffmpeg git master
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'media-libs/xine-lib/files')
-rw-r--r-- | media-libs/xine-lib/files/ffmpeg29.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/media-libs/xine-lib/files/ffmpeg29.patch b/media-libs/xine-lib/files/ffmpeg29.patch new file mode 100644 index 000000000000..a220483218c0 --- /dev/null +++ b/media-libs/xine-lib/files/ffmpeg29.patch @@ -0,0 +1,44 @@ +Index: xine-lib-1.2.6/src/combined/ffmpeg/ff_audio_decoder.c +=================================================================== +--- xine-lib-1.2.6.orig/src/combined/ffmpeg/ff_audio_decoder.c ++++ xine-lib-1.2.6/src/combined/ffmpeg/ff_audio_decoder.c +@@ -590,7 +590,7 @@ static int ff_audio_decode (ff_audio_dec + int got_frame; + float gain = this->class->gain; + if (!this->av_frame) +- this->av_frame = avcodec_alloc_frame (); ++ this->av_frame = av_frame_alloc (); + + consumed = avcodec_decode_audio4 (this->context, this->av_frame, &got_frame, &avpkt); + if ((consumed >= 0) && got_frame) { +@@ -1071,7 +1071,7 @@ static void ff_audio_reset (audio_decode + /* try to reset the wma decoder */ + if( this->decoder_ok ) { + #if AVAUDIO > 3 +- avcodec_free_frame (&this->av_frame); ++ av_frame_free (&this->av_frame); + #endif + pthread_mutex_lock (&ffmpeg_lock); + avcodec_close (this->context); +@@ -1105,7 +1105,7 @@ static void ff_audio_dispose (audio_deco + + if( this->context && this->decoder_ok ) { + #if AVAUDIO > 3 +- avcodec_free_frame (&this->av_frame); ++ av_frame_free (&this->av_frame); + #endif + pthread_mutex_lock (&ffmpeg_lock); + avcodec_close (this->context); +Index: xine-lib-1.2.6/src/combined/ffmpeg/ff_video_decoder.c +=================================================================== +--- xine-lib-1.2.6.orig/src/combined/ffmpeg/ff_video_decoder.c ++++ xine-lib-1.2.6/src/combined/ffmpeg/ff_video_decoder.c +@@ -2523,7 +2523,7 @@ static video_decoder_t *ff_video_open_pl + this->stream = stream; + this->class = (ff_video_class_t *) class_gen; + +- this->av_frame = avcodec_alloc_frame(); ++ this->av_frame = av_frame_alloc(); + this->context = avcodec_alloc_context(); + this->context->opaque = this; + #if AVPALETTE == 1 |