summaryrefslogtreecommitdiffstats
path: root/libmpdemux/cdda.c
Commit message (Collapse)AuthorAgeFilesLines
* Get ride of the several if(identify) messy lines and rearangment of some of ↵reynaldo2006-04-241-4/+2
| | | | | | the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18238 b3059339-0415-0410-9bf9-f77b7e298cf2
* resource leak fix.gpoirier2006-04-231-0/+3
| | | | | | | | | | | detected by Covertity's checker: CID: 154 Checker: RESOURCE_LEAK Description: Returned without freeing storage "cddb_info" git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18226 b3059339-0415-0410-9bf9-f77b7e298cf2
* Unify include path handling, -I.. is in CFLAGS.diego2005-11-181-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17013 b3059339-0415-0410-9bf9-f77b7e298cf2
* [TRIVIAL] More translatables to help_mp and printfs to mp_msg on libmpdemuxreynaldo2005-11-101-3/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16968 b3059339-0415-0410-9bf9-f77b7e298cf2
* save us from #ifndef hellfaust32005-11-061-29/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16941 b3059339-0415-0410-9bf9-f77b7e298cf2
* make it optionally possible to compile MPlayer with libcdio instead of ↵faust32005-11-061-3/+51
| | | | | | | | | | | libcdparanoia patch by Erik Lunchpail <erik_27can at yahoo.com> base on patch by Rocky Bernstein <rocky at panix.com> minor modification by myself git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16936 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix cdda://n syntax: do not hang when n > nr_tracks and play only track n,reimar2005-11-061-2/+5
| | | | | | | not all after (unfortunately, cdda://n- does not work, use e.g. cdda://n-99999). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16927 b3059339-0415-0410-9bf9-f77b7e298cf2
* set cdda paranoia default to 0 since e.g. cdda://2 breaks otherwise.reimar2005-11-051-1/+1
| | | | | | | | this was the default before, too, since a function call was missing and thus the paranoia setting was ignored git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16915 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l, forgotten call to paranoia_modeset to actually set the desired mode.reimar2005-10-021-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16636 b3059339-0415-0410-9bf9-f77b7e298cf2
* Prints the number of tracks and MSF length for each track of an audio CD,gpoirier2005-09-191-3/+10
| | | | | | | | | | | | | prints ID_CDDA_TRACK=N output showing the currently played track number when -identify is given. Patch by kiriuja < mplayer TIRET patches CHEZ en TIRET directo POIS net > Doxygen comments by Guillaume POIRIER Original thread: Date: Sep 11, 2005 10:49 PM Subject: Re: [MPlayer-dev-eng] [PATCH] -identify audio CD tracks git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16525 b3059339-0415-0410-9bf9-f77b7e298cf2
* cdda: endianness fixcolin2003-12-161-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11653 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix -cdrom-device to work again with cdda and vcd.albeu2003-08-131-1/+10
| | | | | | | Based on patch from Arwed von Merkatz. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10592 b3059339-0415-0410-9bf9-f77b7e298cf2
* Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.bertrand2003-05-171-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10122 b3059339-0415-0410-9bf9-f77b7e298cf2
* URL is cdda://tracks[:speed][/device]albeu2003-04-021-76/+157
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9802 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed trivial seeking bugs, patch by Krister Lagerstrom <krister@kmlager.com>alex2003-03-221-1/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9657 b3059339-0415-0410-9bf9-f77b7e298cf2
* Removed the hardcoded /dev/cdrom for NetBSD and added an work aroundbertrand2003-01-151-4/+4
| | | | | | | | for problem with cdparanoia. Patch from Frederick Bruckman <fredb@immanent.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8959 b3059339-0415-0410-9bf9-f77b7e298cf2
* The following patch allows the MPlayer "cdparanoia" support to work onarpi2002-12-281-0/+4
| | | | | | | | | | | | | | | | NetBSD-1.6_STABLE, both "cdda://NN" and "cddb://NN" URI's. The CDROM ioctl's are actually more like OpenBSD's than FreeBSD's. I went with the "/dev/cdrom" symlink as the default device, though, as it otherwise gets messy fast... The first CDROM is "/dev/rcd0d" on NetBSD/i386, but "/dev/rcd0c" on all other NetBSD ports, and only the cdda_identify_scsi() form seems to work on NetBSD. (I searched the web in vain for the Paranoia API, so I'm left to hacking. ;-)) Frederick Bruckman <fredb@immanent.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8610 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1l :)arpi2002-12-241-1/+1
| | | | | | | remove debuginfo git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8560 b3059339-0415-0410-9bf9-f77b7e298cf2
* print track title in new linearpi2002-12-241-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8559 b3059339-0415-0410-9bf9-f77b7e298cf2
* CDDA seeking fixedarpi2002-12-221-6/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8525 b3059339-0415-0410-9bf9-f77b7e298cf2
* cleanup config option handling in libmpdemux.arpi2002-10-231-10/+1
| | | | | | | | removed overcompilacted m_config_register_options() mess - export the subconfig structs instead git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7868 b3059339-0415-0410-9bf9-f77b7e298cf2
* Build a fake list of track name.bertrand2002-07-101-15/+64
| | | | | | | | The track name (cdda/cddb) should be display when reaching a new track or when seeking. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6697 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support for playing audio cds using cdparanoia. Include a raw audioalbeu2002-06-111-0/+207
demuxer wich can be used for other purpose. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6385 b3059339-0415-0410-9bf9-f77b7e298cf2