Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
4ba7427f
Commit
4ba7427f
authored
Mar 01, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
util/{Const,Writable}Buffer: add operator[]
parent
9dc5335e
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
41 additions
and
19 deletions
+41
-19
TextInputStream.cxx
src/input/TextInputStream.cxx
+1
-1
FallbackResampler.cxx
src/pcm/FallbackResampler.cxx
+3
-3
ConstBuffer.hxx
src/util/ConstBuffer.hxx
+11
-0
WritableBuffer.hxx
src/util/WritableBuffer.hxx
+11
-0
test_pcm_channels.cxx
test/test_pcm_channels.cxx
+6
-6
test_pcm_format.cxx
test/test_pcm_format.cxx
+6
-6
test_pcm_volume.cxx
test/test_pcm_volume.cxx
+3
-3
No files found.
src/input/TextInputStream.cxx
View file @
4ba7427f
...
...
@@ -63,7 +63,7 @@ bool TextInputStream::ReadLine(std::string &line)
the current line */
dest
=
buffer
.
Write
();
assert
(
!
dest
.
IsEmpty
());
dest
.
data
[
0
]
=
'\n'
;
dest
[
0
]
=
'\n'
;
buffer
.
Append
(
1
);
}
}
while
(
p
==
nullptr
);
...
...
src/pcm/FallbackResampler.cxx
View file @
4ba7427f
...
...
@@ -85,7 +85,7 @@ pcm_resample_fallback(PcmBuffer &buffer,
while
(
dest_pos
<
dest_samples
)
{
unsigned
src_pos
=
dest_pos
*
src_rate
/
dest_rate
;
dest_buffer
[
dest_pos
++
]
=
src
.
data
[
src_pos
];
dest_buffer
[
dest_pos
++
]
=
src
[
src_pos
];
}
break
;
case
2
:
...
...
@@ -93,8 +93,8 @@ pcm_resample_fallback(PcmBuffer &buffer,
unsigned
src_pos
=
dest_pos
*
src_rate
/
dest_rate
;
src_pos
&=
~
1
;
dest_buffer
[
dest_pos
++
]
=
src
.
data
[
src_pos
];
dest_buffer
[
dest_pos
++
]
=
src
.
data
[
src_pos
+
1
];
dest_buffer
[
dest_pos
++
]
=
src
[
src_pos
];
dest_buffer
[
dest_pos
++
]
=
src
[
src_pos
+
1
];
}
break
;
}
...
...
src/util/ConstBuffer.hxx
View file @
4ba7427f
...
...
@@ -143,6 +143,17 @@ struct ConstBuffer {
constexpr
const_iterator
cend
()
const
{
return
data
+
size
;
}
#ifdef NDEBUG
constexpr
#endif
const
T
&
operator
[](
size_type
i
)
const
{
#ifndef NDEBUG
assert
(
i
<
size
);
#endif
return
data
[
i
];
}
};
#endif
src/util/WritableBuffer.hxx
View file @
4ba7427f
...
...
@@ -145,6 +145,17 @@ struct WritableBuffer {
constexpr
const_iterator
cend
()
const
{
return
data
+
size
;
}
#ifdef NDEBUG
constexpr
#endif
T
&
operator
[](
size_type
i
)
const
{
#ifndef NDEBUG
assert
(
i
<
size
);
#endif
return
data
[
i
];
}
};
#endif
test/test_pcm_channels.cxx
View file @
4ba7427f
...
...
@@ -39,7 +39,7 @@ PcmChannelsTest::TestChannels16()
CPPUNIT_ASSERT_EQUAL
(
N
,
dest
.
size
);
for
(
unsigned
i
=
0
;
i
<
N
;
++
i
)
CPPUNIT_ASSERT_EQUAL
(
int16_t
((
src
[
i
*
2
]
+
src
[
i
*
2
+
1
])
/
2
),
dest
.
data
[
i
]);
dest
[
i
]);
/* mono to stereo */
...
...
@@ -47,8 +47,8 @@ PcmChannelsTest::TestChannels16()
CPPUNIT_ASSERT
(
!
dest
.
IsNull
());
CPPUNIT_ASSERT_EQUAL
(
N
*
4
,
dest
.
size
);
for
(
unsigned
i
=
0
;
i
<
N
;
++
i
)
{
CPPUNIT_ASSERT_EQUAL
(
src
[
i
],
dest
.
data
[
i
*
2
]);
CPPUNIT_ASSERT_EQUAL
(
src
[
i
],
dest
.
data
[
i
*
2
+
1
]);
CPPUNIT_ASSERT_EQUAL
(
src
[
i
],
dest
[
i
*
2
]);
CPPUNIT_ASSERT_EQUAL
(
src
[
i
],
dest
[
i
*
2
+
1
]);
}
}
...
...
@@ -67,7 +67,7 @@ PcmChannelsTest::TestChannels32()
CPPUNIT_ASSERT_EQUAL
(
N
,
dest
.
size
);
for
(
unsigned
i
=
0
;
i
<
N
;
++
i
)
CPPUNIT_ASSERT_EQUAL
(
int32_t
(((
int64_t
)
src
[
i
*
2
]
+
(
int64_t
)
src
[
i
*
2
+
1
])
/
2
),
dest
.
data
[
i
]);
dest
[
i
]);
/* mono to stereo */
...
...
@@ -75,7 +75,7 @@ PcmChannelsTest::TestChannels32()
CPPUNIT_ASSERT
(
!
dest
.
IsNull
());
CPPUNIT_ASSERT_EQUAL
(
N
*
4
,
dest
.
size
);
for
(
unsigned
i
=
0
;
i
<
N
;
++
i
)
{
CPPUNIT_ASSERT_EQUAL
(
src
[
i
],
dest
.
data
[
i
*
2
]);
CPPUNIT_ASSERT_EQUAL
(
src
[
i
],
dest
.
data
[
i
*
2
+
1
]);
CPPUNIT_ASSERT_EQUAL
(
src
[
i
],
dest
[
i
*
2
]);
CPPUNIT_ASSERT_EQUAL
(
src
[
i
],
dest
[
i
*
2
+
1
]);
}
}
test/test_pcm_format.cxx
View file @
4ba7427f
...
...
@@ -39,7 +39,7 @@ PcmFormatTest::TestFormat8to16()
CPPUNIT_ASSERT_EQUAL
(
N
,
d
.
size
);
for
(
size_t
i
=
0
;
i
<
N
;
++
i
)
CPPUNIT_ASSERT_EQUAL
(
int
(
src
[
i
]),
d
.
data
[
i
]
>>
8
);
CPPUNIT_ASSERT_EQUAL
(
int
(
src
[
i
]),
d
[
i
]
>>
8
);
}
void
...
...
@@ -54,7 +54,7 @@ PcmFormatTest::TestFormat16to24()
CPPUNIT_ASSERT_EQUAL
(
N
,
d
.
size
);
for
(
size_t
i
=
0
;
i
<
N
;
++
i
)
CPPUNIT_ASSERT_EQUAL
(
int
(
src
[
i
]),
d
.
data
[
i
]
>>
8
);
CPPUNIT_ASSERT_EQUAL
(
int
(
src
[
i
]),
d
[
i
]
>>
8
);
}
void
...
...
@@ -69,7 +69,7 @@ PcmFormatTest::TestFormat16to32()
CPPUNIT_ASSERT_EQUAL
(
N
,
d
.
size
);
for
(
size_t
i
=
0
;
i
<
N
;
++
i
)
CPPUNIT_ASSERT_EQUAL
(
int
(
src
[
i
]),
d
.
data
[
i
]
>>
16
);
CPPUNIT_ASSERT_EQUAL
(
int
(
src
[
i
]),
d
[
i
]
>>
16
);
}
void
...
...
@@ -84,8 +84,8 @@ PcmFormatTest::TestFormatFloat()
CPPUNIT_ASSERT_EQUAL
(
N
,
f
.
size
);
for
(
size_t
i
=
0
;
i
!=
f
.
size
;
++
i
)
{
CPPUNIT_ASSERT
(
f
.
data
[
i
]
>=
-
1.
);
CPPUNIT_ASSERT
(
f
.
data
[
i
]
<=
1.
);
CPPUNIT_ASSERT
(
f
[
i
]
>=
-
1.
);
CPPUNIT_ASSERT
(
f
[
i
]
<=
1.
);
}
PcmDither
dither
;
...
...
@@ -96,5 +96,5 @@ PcmFormatTest::TestFormatFloat()
CPPUNIT_ASSERT_EQUAL
(
N
,
d
.
size
);
for
(
size_t
i
=
0
;
i
<
N
;
++
i
)
CPPUNIT_ASSERT_EQUAL
(
src
[
i
],
d
.
data
[
i
]);
CPPUNIT_ASSERT_EQUAL
(
src
[
i
],
d
[
i
]);
}
test/test_pcm_volume.cxx
View file @
4ba7427f
...
...
@@ -61,8 +61,8 @@ TestVolume(G g=G())
const
auto
_dest
=
ConstBuffer
<
value_type
>::
FromVoid
(
dest
);
for
(
unsigned
i
=
0
;
i
<
N
;
++
i
)
{
const
auto
expected
=
(
_src
[
i
]
+
1
)
/
2
;
CPPUNIT_ASSERT
(
_dest
.
data
[
i
]
>=
expected
-
4
);
CPPUNIT_ASSERT
(
_dest
.
data
[
i
]
<=
expected
+
4
);
CPPUNIT_ASSERT
(
_dest
[
i
]
>=
expected
-
4
);
CPPUNIT_ASSERT
(
_dest
[
i
]
<=
expected
+
4
);
}
pv
.
Close
();
...
...
@@ -119,7 +119,7 @@ PcmVolumeTest::TestVolumeFloat()
const
auto
_dest
=
ConstBuffer
<
float
>::
FromVoid
(
dest
);
for
(
unsigned
i
=
0
;
i
<
N
;
++
i
)
CPPUNIT_ASSERT_DOUBLES_EQUAL
(
_src
[
i
]
/
2
,
_dest
.
data
[
i
],
1
);
CPPUNIT_ASSERT_DOUBLES_EQUAL
(
_src
[
i
]
/
2
,
_dest
[
i
],
1
);
pv
.
Close
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment