- Update to 2.49a.
Approved by: miwi (mentor)
This commit is contained in:
parent
7f64f150e2
commit
1279d20500
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=236642
4 changed files with 22 additions and 4 deletions
|
@ -5,7 +5,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= blender
|
||||
PORTVERSION= 2.49
|
||||
PORTVERSION= 2.49a
|
||||
CATEGORIES= graphics games
|
||||
MASTER_SITES= http://download.blender.org/source/ \
|
||||
http://mirror.cs.umn.edu/blender.org/source/ \
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (blender-2.49.tar.gz) = a0f58391ca2554df83375eeaaa8a3fb3
|
||||
SHA256 (blender-2.49.tar.gz) = 797a9c255b31e62ebc831952dba9149787f0b7c9ab8945948a619eae32d81a15
|
||||
SIZE (blender-2.49.tar.gz) = 23030434
|
||||
MD5 (blender-2.49a.tar.gz) = 6f24380ead068ef481a348bef00b3733
|
||||
SHA256 (blender-2.49a.tar.gz) = b206b878a6f96d1e8561ee62a58fba1af4141579c27f51ec795f08f4129eb1fc
|
||||
SIZE (blender-2.49a.tar.gz) = 23039535
|
||||
|
|
16
graphics/blender/files/patch-source_blender_src_hddaudio.c
Normal file
16
graphics/blender/files/patch-source_blender_src_hddaudio.c
Normal file
|
@ -0,0 +1,16 @@
|
|||
--- source/blender/src/hddaudio.c.orig 2009-06-16 14:57:14.000000000 +0200
|
||||
+++ source/blender/src/hddaudio.c 2009-06-24 08:34:40.000000000 +0200
|
||||
@@ -282,11 +282,9 @@
|
||||
hdaudio->resampler = 0;
|
||||
}
|
||||
if (!hdaudio->resampler) {
|
||||
- hdaudio->resampler = av_audio_resample_init(
|
||||
+ hdaudio->resampler = audio_resample_init(
|
||||
target_channels, hdaudio->channels,
|
||||
- target_rate, hdaudio->sample_rate,
|
||||
- SAMPLE_FMT_S16, SAMPLE_FMT_S16,
|
||||
- 16, 10, 0, 0.8);
|
||||
+ target_rate, hdaudio->sample_rate);
|
||||
hdaudio->target_rate = target_rate;
|
||||
hdaudio->target_channels = target_channels;
|
||||
if (hdaudio->resample_cache) {
|
|
@ -42,6 +42,7 @@ bin/blender-bin
|
|||
%%DATADIR%%/scripts/bpymodules/BPyAddMesh.py
|
||||
%%DATADIR%%/scripts/bpymodules/BPyArmature.py
|
||||
%%DATADIR%%/scripts/bpymodules/BPyBlender.py
|
||||
%%DATADIR%%/scripts/bpymodules/BPyBlender.pyc
|
||||
%%DATADIR%%/scripts/bpymodules/BPyCurve.py
|
||||
%%DATADIR%%/scripts/bpymodules/BPyImage.py
|
||||
%%DATADIR%%/scripts/bpymodules/BPyMathutils.py
|
||||
|
@ -51,6 +52,7 @@ bin/blender-bin
|
|||
%%DATADIR%%/scripts/bpymodules/BPyNMesh.py
|
||||
%%DATADIR%%/scripts/bpymodules/BPyObject.py
|
||||
%%DATADIR%%/scripts/bpymodules/BPyRegistry.py
|
||||
%%DATADIR%%/scripts/bpymodules/BPyRegistry.pyc
|
||||
%%DATADIR%%/scripts/bpymodules/BPyRender.py
|
||||
%%DATADIR%%/scripts/bpymodules/BPySys.py
|
||||
%%DATADIR%%/scripts/bpymodules/BPyTextPlugin.py
|
||||
|
|
Loading…
Reference in a new issue