diff options
author | Alexis Ballier <aballier@gentoo.org> | 2018-08-23 13:41:33 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2018-08-23 13:41:44 +0200 |
commit | a9278d349bd375e00bf565fbe2382eeb270c2216 (patch) | |
tree | 1506ca9c83d0f4dae2a6303ddcbefae4d2bc0559 /sci-electronics/gazebo/files | |
parent | sci-electronics/gazebo: bump to 9.3.1 (diff) | |
download | gentoo-a9278d349bd375e00bf565fbe2382eeb270c2216.tar.gz gentoo-a9278d349bd375e00bf565fbe2382eeb270c2216.tar.bz2 gentoo-a9278d349bd375e00bf565fbe2382eeb270c2216.zip |
sci-electronics/gazebo: Remove old
Package-Manager: Portage-2.3.48, Repoman-2.3.10
Diffstat (limited to 'sci-electronics/gazebo/files')
-rw-r--r-- | sci-electronics/gazebo/files/ffmpeg4.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/sci-electronics/gazebo/files/ffmpeg4.patch b/sci-electronics/gazebo/files/ffmpeg4.patch deleted file mode 100644 index 7bd8777dea3f..000000000000 --- a/sci-electronics/gazebo/files/ffmpeg4.patch +++ /dev/null @@ -1,30 +0,0 @@ -Index: gazebo-9.0.0/gazebo/common/AudioDecoder.cc -=================================================================== ---- gazebo-9.0.0.orig/gazebo/common/AudioDecoder.cc -+++ gazebo-9.0.0/gazebo/common/AudioDecoder.cc -@@ -255,8 +255,8 @@ bool AudioDecoder::SetFile(const std::st - return false; - } - -- if (this->codec->capabilities & CODEC_CAP_TRUNCATED) -- this->codecCtx->flags |= CODEC_FLAG_TRUNCATED; -+ if (this->codec->capabilities & AV_CODEC_CAP_TRUNCATED) -+ this->codecCtx->flags |= AV_CODEC_FLAG_TRUNCATED; - - // Open codec - if (avcodec_open2(this->codecCtx, this->codec, nullptr) < 0) -Index: gazebo-9.0.0/gazebo/common/Video.cc -=================================================================== ---- gazebo-9.0.0.orig/gazebo/common/Video.cc -+++ gazebo-9.0.0/gazebo/common/Video.cc -@@ -143,8 +143,8 @@ bool Video::Load(const std::string &_fil - - // Inform the codec that we can handle truncated bitstreams -- i.e., - // bitstreams where frame boundaries can fall in the middle of packets -- if (codec->capabilities & CODEC_CAP_TRUNCATED) -- this->codecCtx->flags |= CODEC_FLAG_TRUNCATED; -+ if (codec->capabilities & AV_CODEC_CAP_TRUNCATED) -+ this->codecCtx->flags |= AV_CODEC_FLAG_TRUNCATED; - - // Open codec - if (avcodec_open2(this->codecCtx, codec, nullptr) < 0) |