summaryrefslogtreecommitdiff
path: root/plugins
Commit message (Collapse)AuthorAge
* fixed convgui and shellexecui titlesGravatar waker2012-05-08
|
* shellexecui: fixed crash when the action is called from non-gtk threadGravatar waker2012-05-08
|
* fixed loading remote playlists with unknown sizeGravatar waker2012-05-07
|
* hotkeys: fixed custom actions support for common and playlist flagsGravatar waker2012-05-07
|
* new "default cover" picture by thesameGravatar waker2012-05-04
|
* Check for reading past end before calling mp4ff_read_sample()Gravatar Martin Panter2012-05-03
| | | | | | | | | | | | | | | Previously errors like the following would occasionally be reported at the end of an AAC file: mp4ff_read_sample: malloc failure (tried to alloc -2147483648 bytes). possible mp4ff bug or memleak! please report a bug to deadbeef developers (i'm serious). This was because the value of “sample” passed to mp4ff_audio_frame_size() caused that function to read just off the end of an array. Bug reported at https://sourceforge.net/support/tracker.php?aid=3321066 Fix inspired by https://bugs.launchpad.net/bugs/40043 “Crash (SIGSEGV) in memcpy using libfaad2”
* added option to disable mp3 gapless support (improves initial scan speed a lot)Gravatar waker2012-05-03
|
* [by Martin Panter <vadmium à gmail·com>]Gravatar waker2012-05-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Retry with the same data after recovering from an underrun or other error The palsa_callback() function seems to limit the rate it returns data, and if a buffer of data is dropped because snd_pcm_writei() failed, the data rate is not fast enough to keep up with ALSA and another buffer underrun occurs. This could cause an indefinite cycle, and the audio would sound slighly choppy and sped up. If the original data is retried, the ALSA buffer eventually tends to become full; perhaps the rate limit is a little faster than real time. When playback continues on to an MP3 file cued in the playlist, the MP3 seems to be scanned before it starts playing. If the scanning takes too long, in my case because the MP3 file is mounted with SSHFS over wifi, it causes a buffer underrun. The code below could also be inserted, just before the snd_pcm_writei() call, to artificially cause an underrun a few seconds into playback: static int n = 0; ++n; if (n >= 200 && n < 300) { trace ("dropping %i\n", n); err = 0; } else err = snd_pcm_writei (...);
* Don’t divide sample rate by number of channelsGravatar Martin Panter2012-05-03
| | | | | | With stereo (two channel) output, the sleep was only allowing just over half a "period" of frames to drain. Reduced processor usage a little bit, from 4.5 percent to 2.6 percent.
* ao static build fixGravatar waker2012-05-02
|
* added shellexec.glade to POTFILES.inGravatar waker2012-04-30
|
* gtkui: fxd random hang caused by ACTIONSCHANGED handlerGravatar waker2012-04-30
|
* shellexec: don't use title formatting / track access on playlist and common ↵Gravatar waker2012-04-30
| | | | actions
* shellexec: fixed hang when adding new commandGravatar waker2012-04-29
|
* added missing stuff for building 0.5.3 tarballGravatar waker2012-04-29
|
* shellexec distcheck compile fixGravatar waker2012-04-28
|
* renamed shellexecui output .so filename to conform to static build rulesGravatar waker2012-04-28
|
* fixed NULL callback in shellexec commands when created from GUIGravatar waker2012-04-28
|
* refresh gtkui eq on DB_EV_DSPCHANGED eventGravatar waker2012-04-26
|
* shellexec: fixed adding first and removing last shell commandGravatar waker2012-04-25
|
* added missing #include to plcommon.cGravatar waker2012-04-25
|
* gtkui: don't re-apply search on add/remove to/from playqueue, remove, reload ↵Gravatar waker2012-04-25
| | | | metadata
* gtkui: fixed main menu separatorsGravatar waker2012-04-24
|
* fixed gtk_message_dialog_format_secondary_text bugGravatar waker2012-04-24
|
* gtkui: automatically reinit main menu on actions changeGravatar waker2012-04-24
|
* shellexecui: more Disabled flag cleanupGravatar waker2012-04-24
|
* shellexecui: added support for 'common' flag to GUI config, added some tooltipsGravatar waker2012-04-24
| | | | | shellexed: save/load 'common' flag gtkui: fixed duplication when adding new custom popup menus
* shellexec[ui]: cleaned up api, fixed memleaks, add/remove/edit works without ↵Gravatar waker2012-04-24
| | | | restarting player, Disabled flag is not user-editable and is not saved to config
* fixed shellexecui gtk3 compatGravatar waker2012-04-24
|
* shellexecui compile fixGravatar waker2012-04-24
|
* wildmidi: fixed possible inline linking errorsGravatar waker2012-04-23
|
* fixed shellexec copyright statementGravatar waker2012-04-19
|
* fix alsa/streamer race conditionGravatar waker2012-04-19
|
* merged shellexecui pluginGravatar waker2012-04-19
|
* shellexec: restored description with full detailsGravatar waker2012-04-16
|
* renamed Fftsg_fl.cpp to Fftsg_fl.cGravatar waker2012-04-13
|
* another shellexec compile fixGravatar waker2012-04-11
|
* shellexec compile fixGravatar waker2012-04-11
|
* converter: fixed // bug; fixed potential bug in finding largest common path ↵Gravatar waker2012-04-10
| | | | without reducing it to the last separator
* converter: fixed escaping special charsGravatar waker2012-04-10
|
* converter: added ` to escape listGravatar waker2012-04-09
|
* converter: show default output path in the input field; pass the default ↵Gravatar waker2012-04-09
| | | | path to the filechooser
* converter: moved duplicate code into converter plugin and exposed via API, ↵Gravatar waker2012-04-08
| | | | converter API is now v1.2
* converter: added support for writing files to source track foldersGravatar waker2012-04-08
|
* converter: fixed tag writingGravatar waker2012-04-08
|
* converter: added reconstruction of folder structure based on the largest ↵Gravatar waker2012-04-08
| | | | common root
* converter: fixed writing wav files sized over 2gigsGravatar waker2012-04-08
|
* added random sort (based on patch from defusix)Gravatar waker2012-04-06
|
* fixed few missing returnsGravatar waker2012-04-05
|
* gtk-2.12 compatibility fixesGravatar waker2012-04-05
|