summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix some compile errors when audio DEBUG is enabledGregory Nutt2014-07-242-6/+6
|
* More removal of EXTERN on function prototypesGregory Nutt2014-07-241-5/+6
|
* Lots of changes to integrate with Ken's NxPlayerGregory Nutt2014-07-243-60/+275
|
* Add a do-notthin, virtual destructor to eliminate a warningGregory Nutt2014-07-241-0/+9
|
* NxWidgets::CNxString: Add a getAllocSize() method to make it easier to ↵Gregory Nutt2014-07-242-7/+20
| | | | convert CNxStrings to NUL-terminated C strings
* NxWM::CMediaPlayer: Condition out features corresonding to NxPlayer features ↵Gregory Nutt2014-07-242-1/+43
| | | | that are not enabled
* Convert ac_format and ac_controls to unions to make access a little cleanerGregory Nutt2014-07-246-105/+101
|
* Audio: Get rid of the decoder->driver IOCTLs that I added a couple of ↵Gregory Nutt2014-07-245-105/+115
| | | | commits back; Use existing configure method
* Update ChangelogGregory Nutt2014-07-242-0/+6
|
* Audio: Add hooks for fast-forward and rewind needed by CMediaPlayer; add ↵Gregory Nutt2014-07-246-31/+314
| | | | hooks for equalizer settings needed by the WM8904
* Need debug output from CMediaPlayer if either audio or graphics debug enabledGregory Nutt2014-07-242-20/+48
|
* Update ChangeLogsGregory Nutt2014-07-232-1/+5
|
* NxPlayer: Misc changes to better integrate with NxWM::CMediaPlayerGregory Nutt2014-07-233-7/+24
|
* NxWM: Beginning integration of NxPlayer into Nxwm::MediaPlayer. Gets handle, ↵Gregory Nutt2014-07-236-5/+164
| | | | sets device, and releases handle. Lots more to be done
* Fix missing right parenthesis in conditional compilation; Also, should use ↵Gregory Nutt2014-07-231-16/+16
| | | | strcasecmp vs. strcmp when comparing for matches in extension
* Update ChangeLogGregory Nutt2014-07-231-0/+3
|
* SAMA5D4-EK NSH: Enable the command line media player in the NSH ↵Gregory Nutt2014-07-232-7/+90
| | | | configuration as well (still does not work, however).
* Update ChangeLogsGregory Nutt2014-07-232-0/+9
|
* SAMA5D4 NxWM: Configuration now has the audio subsystem and the NxPlayer ↵Gregory Nutt2014-07-233-63/+157
| | | | enabled
* Ongoing campaign to remove EXTERN storage class on function prototypesGregory Nutt2014-07-232-12/+14
|
* Fix a type in the audio Kconfig file, UDIO->AUDIOGregory Nutt2014-07-231-1/+1
|
* NxWM::CMediaPlayer: Add logic to read files from the media mountpoint, ↵Gregory Nutt2014-07-231-19/+80
| | | | filter them by extension, and display the file names in the listbox
* NxWM: Add configuration options to filter CMediaPlayer files based on extensionGregory Nutt2014-07-232-36/+160
|
* Update ChangeLogGregory Nutt2014-07-231-0/+3
|
* Add ioctls so that PCM decoder can configure the driver bitrate, num ↵Gregory Nutt2014-07-234-11/+100
| | | | channels, and sample width
* Flesh out missing PCM decoder methodsGregory Nutt2014-07-232-55/+186
|
* Update ChangeLogGregory Nutt2014-07-231-1/+3
|
* Audio: Add a NULL audio device that can be used to simply unit-level ↵Gregory Nutt2014-07-2311-15/+1185
| | | | testing of audio decoders
* Fix error introduced in last commit: Can't call ferror AFTER closing fileGregory Nutt2014-07-231-2/+4
|
* Update ChangeLogGregory Nutt2014-07-232-1/+6
|
* SAMA5D3/4: All configurations. I suspect a MMC/SD multi-block DMA transfer ↵Gregory Nutt2014-07-236-4/+22
| | | | issue. So for name, this feature is disabled in all configurations
* Update ChangeLogGregory Nutt2014-07-231-0/+2
|
* NxPlayer: Check for read errors and end-of-file with nothing readGregory Nutt2014-07-231-24/+55
|
* Update ChangeLogGregory Nutt2014-07-221-0/+3
|
* Flesh out a few more PCM methods, still incomplete. Re-vision PCM structure ↵Gregory Nutt2014-07-225-122/+371
| | | | definition
* Update ChangeLogGregory Nutt2014-07-221-0/+5
|
* Rename pcm_decode.h to pcm.h since it will hold more than just decoding ↵Gregory Nutt2014-07-224-17/+97
| | | | definitions. Fix some porting errors like idbg should auddbg, etc. Add wav file header and a few low-level wav utilities.
* Update ChangeLogGregory Nutt2014-07-221-1/+9
|
* Add new framework for the PCM decoder. It is now a 'front end' for ↵Gregory Nutt2014-07-229-73/+708
| | | | lower-level drivers like the WM8904 that performs the PCM decoding from end
* Remove WM8904 driver unused paramters, clean-up comments, remove some kruft ↵Gregory Nutt2014-07-222-52/+15
| | | | in capability reporting
* Fix a recently introduced typo that was being masked by some bad conditional ↵Gregory Nutt2014-07-221-4/+6
| | | | compilation
* nxplayer: Add more debug output so that those of use who are not Ken can ↵Gregory Nutt2014-07-222-24/+57
| | | | follow what is happening
* Update READMEGregory Nutt2014-07-221-20/+10
|
* Update ChangeLogGregory Nutt2014-07-221-1/+13
|
* Make CNxTimer stop itself before destruction. Otherwise a call to an ↵Gregory Nutt2014-07-221-0/+1
| | | | invalid work queue entry may occur. From Petteri Aimonen
* Make CTabPanel raise action event when tab is changed. Also add a function ↵Gregory Nutt2014-07-222-4/+12
| | | | for getting the currently selected tab index. From Petteri Aimonen
* NxWidgets::CTabPanel: Modify behavior in showPage() method. Eliminate a ↵Gregory Nutt2014-07-221-7/+4
| | | | duplicate redraw that caused flickering; re-order some logic so that widgets are hidden before operated on. From Petteri Aimonen
* NxWidgets::CTaskbar: Fix type of return value fromopenRawWindow() method. ↵Gregory Nutt2014-07-221-2/+2
| | | | From Petteri Aimonen
* NxWidgets::CNxString: Make destructor virtual. From Petteri AimonenGregory Nutt2014-07-221-1/+1
|
* Update ChangeLogGregory Nutt2014-07-222-1/+9
|