mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 18:25:45 -04:00
CDROM: Implement auto-pause at end of track
This commit is contained in:
@ -142,6 +142,12 @@ public:
|
||||
u8 data[SUBCHANNEL_BYTES_PER_FRAME];
|
||||
|
||||
u16 ComputeCRC() const;
|
||||
|
||||
SubChannelQ& operator=(const SubChannelQ& q)
|
||||
{
|
||||
std::copy(q.data, q.data + SUBCHANNEL_BYTES_PER_FRAME, data);
|
||||
return *this;
|
||||
}
|
||||
};
|
||||
static_assert(sizeof(SubChannelQ) == SUBCHANNEL_BYTES_PER_FRAME, "SubChannelQ is correct size");
|
||||
|
||||
|
Reference in New Issue
Block a user