summaryrefslogtreecommitdiffstats
path: root/apps/playback.c
AgeCommit message (Expand)AuthorFilesLines
2006-05-15Reset playlist_end when automatically skipping. Fixes B#5319.Hardeep Sidhu1-0/+3
2006-05-15Reset id3 info in all cases where we need to rebuffer tracksHardeep Sidhu1-1/+4
2006-05-09Reset id3 info when skipping directories. Fixes B#5323.Hardeep Sidhu1-0/+1
2006-05-03Don't initiate track change if at end of playlistHardeep Sidhu1-2/+5
2006-05-03Only reset resume settings when we're really at the end of the playlistHardeep Sidhu1-1/+2
2006-05-02Stop playing current track before starting a new playlist with an offset (eg....Hardeep Sidhu1-1/+4
2006-05-01Properly set audio_is_initialized flag for swcodec devices ad use it when ini...Hardeep Sidhu1-4/+7
2006-04-30Fix one seeking bug: when seeking back to before a resume point, audio from a...Magnus Holmgren1-4/+8
2006-04-26Don't magically skip tracks without user interractionBrandon Low1-0/+1
2006-04-26This seems to fix a few bugs in thatBrandon Low1-0/+6
2006-04-26This seems to make selecting a new track from the file browser work very clos...Brandon Low1-27/+65
2006-04-25Switch inserts back from do while to while loops, because mpc likes to insert...Brandon Low1-7/+6
2006-04-24Fix the most likely cause of ipod nano startup race, and also seems to fix cr...Brandon Low1-2/+4
2006-04-24Make track info update in a smarter wayBrandon Low1-3/+8
2006-04-23Fix some todos, and prevent the position from jumping around badly on seekBrandon Low1-5/+9
2006-04-23Improve stop behaviorBrandon Low1-0/+5
2006-04-23Fix a warning, and prepare for handling end-of-track seekingBrandon Low1-9/+9
2006-04-23Should fix some track ending early problemsBrandon Low1-1/+2
2006-04-23Make some adjustments to when the WPS will be updated, giving faster next tra...Brandon Low1-4/+3
2006-04-22Remove an unneeded define, add a todoBrandon Low1-0/+1
2006-04-22Fix warningBrandon Low1-1/+1
2006-04-22First commit of reworking voice to be mroe stable on swcodecBrandon Low1-278/+378
2006-04-20Set playing to true immediately when audio_play() is called. Fixes a bug whe...Hardeep Sidhu1-0/+1
2006-04-19Have the codec thread stop the pcm if we need to spin up the diskBrandon Low1-1/+11
2006-04-18Fix playback if the user does a very fast seek->skip pressBrandon Low1-0/+3
2006-04-18Fix end of playlist handling. I think.Brandon Low1-0/+1
2006-04-18Revert previous, it is brokenBrandon Low1-3/+1
2006-04-18Make seeking synchronous. It's better this wayBrandon Low1-1/+3
2006-04-18Fix dir skipping with new playback arch. Enable dir skipping on ipod with a ...Brandon Low1-8/+32
2006-04-18Should fix a bug with track skipping backwards following track skip forward, ...Brandon Low1-1/+1
2006-04-18Save empty resume information if the playlist has endedBrandon Low1-1/+5
2006-04-17Reduce code size when logf is off. Add a todo. Undo a previous fix that bro...Brandon Low1-4/+15
2006-04-17Misc. minor fixes: Guarantee aligned buffer. Enable load-codec-from-disk if ...Brandon Low1-110/+123
2006-04-15Remove an unneeded WPS update signal. Make the codec thread more polite abou...Brandon Low1-7/+12
2006-04-15Put new_track on the codec_api, and use it instead of the reload_codec variab...Brandon Low1-29/+22
2006-04-14This might fix the buffering problem. Didn't happen to me the way I usually ...Brandon Low1-1/+4
2006-04-14Still not brightBrandon Low1-1/+1
2006-04-14I am dumbBrandon Low1-2/+0
2006-04-14Work around the bug with buffer wrapping. Serious performance penalty, and a...Brandon Low1-1/+6
2006-04-14Fix some unlikely buffer problems. Doesn't fix any reported bugs, but fixes ...Brandon Low1-1/+15
2006-04-14Fix some stop/pause/boost stuffBrandon Low1-6/+4
2006-04-14Fix a lack of return on error for check_new_track (rare condition)Brandon Low1-0/+6
2006-04-14Fix the queue implementationBrandon Low1-18/+41
2006-04-14Change to using a queue to synchronize between threads instead of abusing a m...Brandon Low1-17/+16
2006-04-14Fix one cause of buffer-offness, but I'm pretty sure this is not the cause of...Brandon Low1-3/+8
2006-04-14Tweak id3v1 tag stripping, better code, same functionality. Ensure correct b...Brandon Low1-27/+20
2006-04-14Change when the new_track variable is reset to fix the track display during s...Brandon Low1-2/+5
2006-04-13Boost during the track transition, trust me, it makes sense. Better logging ...Brandon Low1-9/+24
2006-04-13Adjust filesize if id3v1 is strippedBrandon Low1-1/+3
2006-04-13Ensure that the buffer doesn't get out of sync on rebuffer track changes. Re...Brandon Low1-15/+29