mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-19 13:16:27 +01:00
fix may-be-used-unset warnin
This commit is contained in:
parent
ed645761d0
commit
1e09e0f6fa
1 changed files with 6 additions and 6 deletions
|
|
@ -1717,9 +1717,9 @@ DiskReader::Declicker::reset (samplepos_t loop_start, samplepos_t loop_end, bool
|
||||||
void
|
void
|
||||||
DiskReader::Declicker::run (Sample* buf, samplepos_t read_start, samplepos_t read_end)
|
DiskReader::Declicker::run (Sample* buf, samplepos_t read_start, samplepos_t read_end)
|
||||||
{
|
{
|
||||||
samplecnt_t n; /* how many samples to process */
|
samplecnt_t n = 0; /* how many samples to process */
|
||||||
sampleoffset_t bo; /* offset into buffer */
|
sampleoffset_t bo = 0; /* offset into buffer */
|
||||||
sampleoffset_t vo; /* offset into gain vector */
|
sampleoffset_t vo = 0; /* offset into gain vector */
|
||||||
|
|
||||||
if (fade_start == fade_end) {
|
if (fade_start == fade_end) {
|
||||||
return;
|
return;
|
||||||
|
|
@ -1793,9 +1793,9 @@ DiskReader::Declicker::run (Sample* buf, samplepos_t read_start, samplepos_t rea
|
||||||
void
|
void
|
||||||
DiskReader::maybe_xfade_loop (Sample* buf, samplepos_t read_start, samplepos_t read_end, ReaderChannelInfo* chan)
|
DiskReader::maybe_xfade_loop (Sample* buf, samplepos_t read_start, samplepos_t read_end, ReaderChannelInfo* chan)
|
||||||
{
|
{
|
||||||
samplecnt_t n; /* how many samples to process */
|
samplecnt_t n = 0; /* how many samples to process */
|
||||||
sampleoffset_t bo; /* offset into buffer */
|
sampleoffset_t bo = 0; /* offset into buffer */
|
||||||
sampleoffset_t vo; /* offset into gain vector */
|
sampleoffset_t vo = 0; /* offset into gain vector */
|
||||||
|
|
||||||
const samplepos_t fade_start = loop_declick_out.fade_start;
|
const samplepos_t fade_start = loop_declick_out.fade_start;
|
||||||
const samplepos_t fade_end = loop_declick_out.fade_end;
|
const samplepos_t fade_end = loop_declick_out.fade_end;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue