Commit Graph

1046 Commits

Author SHA1 Message Date
casey langen
5f7f2ac0e0 Fixed bug in Player::Destroy() that could try to detach an already
detached thread, leading to a crash.
2016-12-23 16:09:48 -08:00
casey langen
167d7aeb1c Added missing CrossfadeTransport and Crossfader source files. 2016-12-23 12:57:24 -08:00
casey langen
25e752892c - Fixed a bug in Player mixpoint dispatch
- Fixed MessageQueue::WaitAndDispatch() time arithmetic
2016-12-23 12:56:24 -08:00
casey langen
5cd3a8de10 Properly implemented play/pause semantics in output plugins (only WaveOut
was doing it properly!)
2016-12-23 12:53:57 -08:00
casey langen
a6372b3c92 A bunch of changes, some of which are still untested:
1. Added IDecoder::GetDuration() methods. Implemented it for all decoders.
2. Modified NomadDecoder to properly resolve duration for mp3 files that
do not have valid Xing headers (borrowed TagLib code)
3. Added IStream::GetDuration(), IPlayer::GetDuration(), and
ITransport::GetDuration()
4. Stubbed out a CrossfaderTransport (untested, unimplemented)
5. Added the concept of "MixPoints" to Player, so clients can be notified
when playback reaches certain points. (untested)
6. Started fleshing out a Crossfader implementation that uses a background
thread and a MessageQueue (untested)
7. Modified TransportWindow to pull the decoder's duration, then fallback
to the library duration if unavailable.
8. Added IDataStream::Seekable(), implemented in LocalFileStream.
2016-12-23 01:36:49 -08:00
Casey Langen
4b53439d68 Fixed macos compile. 2016-12-21 16:48:27 -08:00
casey langen
25fa580bde - Moved MessageQueue and friends into the core so it can be reused for
other things like timers and processing threads
- Cleaned up Player's listener interface a bit, and removed some more
  complexity from GaplessTransport
2016-12-21 16:41:44 -08:00
casey langen
1a00c83c7b Added MessageQueue::WaitAndDispatch(), which should be usable for
timer-like functionality.
2016-12-21 00:02:20 -08:00
casey langen
3aa4871e62 MessageQueue itself is no longer a singleton. However, Window has a static
instance.
2016-12-20 22:54:13 -08:00
casey langen
b832b96688 Simplified GaplessTransport -- we no longer need to keep around the weird
list of active players -- only the one that's actually active and the next
one.
2016-12-20 22:27:13 -08:00
casey langen
95fc9c725b Ensure the state flag in DirectSoundOut.h is an atomic. 2016-12-19 22:57:50 -08:00
casey langen
00bcb09a94 Version bump. 2016-12-19 22:52:37 -08:00
casey langen
35335632e8 Added a very simple shell script used to archive builds for distribution. 2016-12-19 22:50:37 -08:00
casey langen
928a74e4d5 OK, hopefully really fixed the volume -> attenuation conversion. Used VLC
as a reference implementation.
2016-12-19 16:24:20 -08:00
casey langen
cd15ece9f0 Fixed volume -> attenuation conversion in DirectSoundOut. 2016-12-18 19:40:11 -08:00
casey langen
d27b911ede - Added DirectSoundOut plugin for Windows
- Updated WasapiOut to pre-calculate the stream latency
2016-12-18 17:15:00 -08:00
casey langen
60f8d5ab50 Fixed broken CMakeLists install script. 2016-12-14 22:06:56 -08:00
Casey Langen
487f47a88c Version bump. 2016-12-14 07:47:09 -08:00
casey langen
33c61c27bd Removed mpg123 references from README.md -- if all goes well with this
branch we'll default to (no)mad.
2016-12-13 22:28:56 -08:00
casey langen
dff09255a7 Fixed Linux compile. 2016-12-13 21:26:32 -08:00
casey langen
e299c2a98e Basic math is hard. Fixed scaling PCM_16 -> FLOAT_32 2016-12-13 21:10:47 -08:00
Casey Langen
4f0d98b850 Fixed OSX compile. 2016-12-13 20:40:48 -08:00
casey langen
5bae38bf65 Added a decoder for the (no)mad mpeg library. Gapless playback for a wider
variety of mp3 files!
2016-12-13 19:55:30 -08:00
casey langen
99f87237da Upgraded mpg123 to 1.23.8 for Win32 build. Now built from source and
doesn't require libgcc_s_sjlj-1 or the external libmpg123-0.dll.
2016-12-12 23:15:04 -08:00
casey langen
bdd8679865 Introduced an ID cache in the IndexerTrack to reduce DB churn when
indexing large amounts of files. This should improve indexing speed
at the expense of temporarily increased memory usage.
2016-12-11 21:48:35 -08:00
casey langen
2b7ad11c40 Version bump. 2016-12-10 00:07:36 -08:00
casey langen
b428b2d7d1 Fixed the GdiVis project to not put intermediates into the output
directory.
2016-12-10 00:07:19 -08:00
casey langen
ddacf4dc69 Make sure when we change main layouts we bring them to the top so all
views appear properly.
2016-12-10 00:06:47 -08:00
casey langen
be9284e4ef Fixed a really old bug in ListWindow where you could scroll past the last
item if items in the viewport were of heterogenous size.
2016-12-08 20:25:17 -08:00
casey langen
b3b423f931 Not feeling the new list title style. Reverted. 2016-12-08 00:08:25 -08:00
casey langen
3cceef8d93 Dangerous low-level change #3
Dramatically reduce unnecessary redraws by introducing a dirty bit to the
Window instances. Also changed the order in which some windowing
operations are performed.
2016-12-07 22:11:06 -08:00
casey langen
0a76f0f4f9 Tweaked the look and feel of the new header in BrowseLayout. 2016-12-07 16:38:40 -08:00
casey langen
ec2632431a - One more PDCurses update -- I think I added some bad binaries last
night.
- A couple bug fixes with Window::Move and Window::SetSize
2016-12-07 14:24:41 -08:00
casey langen
85c101ca54 Make settings layout more compact. 2016-12-07 07:08:25 -08:00
casey langen
4a374d7615 Modified behavior of Window to destroy panels when hiding, instead of
calling hide_panel(). This seems to fix some PDCurses-specific crashes.
2016-12-07 07:06:58 -08:00
casey langen
7c34140d2b Updated Win32a curses build. 2016-12-07 01:14:28 -08:00
casey langen
d472b56ca3 Another dangerous low-level change: updated the way LayoutBase::Layout()
works to be similar to Window::Redraw(). The default implementation now
does bounds checking and calls through to OnLayout() instead. Doing this
ensures we don't spend time laying out views that are not visible. Also
removed a bunch of extraneous Layout() calls.
2016-12-07 00:26:06 -08:00
casey langen
95f383221c Super dangerous low-level changes to cursespp to fix some fundamental
issues:

- Added OnRedraw() template method that should be used instead of Redraw()
  for the normal case. Redraw() will do some visibility and bounds
  checking on behalf of the caller.
- Added IWindow::OnParentVisibilityChanged() that is used by sub-views to
  know when their parent changes. This is so Windows can hide themselves
  while retaining their internal visibility flags.
- A couple bounds checking and corner case fixes in Window.

In the end this gives us:

- Fewer unnecessary redraws (in theory)
- The ability to set sub-view visibility indepdent of parent view, without
  the need to call Layout::AddWindow and Layout::RemoveWindow
2016-12-06 23:59:03 -08:00
casey langen
fe55c92a12 Added OnRedraw() template method for Window subclasses. Redraw() will
check visibility before requesting a repaint.
2016-12-06 20:33:51 -08:00
casey langen
f56ffb0bcf Added new Redraw() base class method, and renamed Repaint() to
Invalidate(). Also renamed Window::Invalidate to Window::InvalidateScreen
2016-12-06 19:16:26 -08:00
casey langen
68f574235b Fixed search results -> browse category title bug. 2016-12-06 01:00:08 -08:00
casey langen
1017d46016 Improved header layout in settings, and dynamically add heads in
BrowseLayout based on screen size.
2016-12-06 00:44:59 -08:00
casey langen
05b62839b0 Added speaker channel constants. 2016-12-06 00:44:30 -08:00
casey langen
1dd16d8ed7 Updated README to include PulseAudio library for Linux. 2016-12-05 20:24:10 -08:00
casey langen
94aef06a7d Hush some unnecessary logging in PulseOut.cpp 2016-12-05 20:23:10 -08:00
casey langen
98c11a9706 Fixed volume initialization in PulseOut 2016-12-05 20:21:26 -08:00
casey langen
da6e635bd3 Fixed compile on Linux and macOS. 2016-12-05 20:20:02 -08:00
casey langen
ae88f6ee31 Added the ability for the user to select their preferred output plugin! 2016-12-05 20:17:58 -08:00
Casey Langen
3e6f66d986 Added a PulseAudio output plugin for Linux. 2016-12-05 17:00:13 -08:00
casey langen
487502fd1f Modified IOutput interface to supply an optional latency. Updated
WasapiOut to send the proper latency.
2016-12-04 23:45:07 -08:00