Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alexmarsev/soxr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Sykes <rob@rob-Ideapad-S205.(none)>2013-03-01 12:34:50 +0400
committerRob Sykes <rob@rob-Ideapad-S205.(none)>2013-03-01 12:34:50 +0400
commitc421d397404a60775016cce633f4b9e607749484 (patch)
tree67c92b1a1745a6ba7b17fa5ff5a29bd3aefbe23d
parente8ce89b5d11b6a6375969149bb5b8508b0b11467 (diff)
clarify
-rw-r--r--NEWS9
1 files changed, 5 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index d0ae79b..c2313e4 100644
--- a/NEWS
+++ b/NEWS
@@ -6,20 +6,21 @@ Version 0.1.1 (2013-xx-xx)
* For API clarity, renamed and changed usage of some parameters in
soxr_quality_spec_t (ABI compatible, API incompatible). An application not
setting these parameters directly need make no change; otherwise, changes
- should be made as follows. (As shown, compatibility with both old/new APIs
- is maintained.)
+ should be made per the following example. (As shown, compatibility with both
+ old/new APIs is maintained.)
#if !defined SOXR_VERSION /* Deprecated, 0.1.0 API */
q_spec.phase = minimum_phase? 0 : 50;
q_spec.bw_pc = cutoff * 100;
q_spec.anti_aliasing_pc = anti_aliasing * 100;
- #else /* 0.1.1 API */ Note:
+ #else /* 0.1.1 API */ Explanation:
q_spec.phase_response = minimum_phase? 0 : 50; Renamed.
q_spec.passband_end = cutoff; Renamed, no longer %.
q_spec.stopband_begin = 2 - anti_aliasing; Renamed, no longer %,
#endif now mirrored in Fs.
- ABI compatibility with the 0.1.0 API may be removed in a future release.
+ See also the comments on these parameters in soxr.h. N.B. ABI compatibility
+ with the 0.1.0 API may be removed in a future release.
Version 0.1.0 (2013-01-19)