summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-09-26xine_encoder includes a dxr3 header, which in turn uses X11 headers,Michael Roitzsch
so we need to add $(X_CFLAGS) here CVS patchset: 5417 CVS date: 2003/09/26 16:39:56
2003-09-25typoDaniel Caujolle-Bert
CVS patchset: 5416 CVS date: 2003/09/25 13:56:29
2003-09-25add Njål T. BorchDaniel Caujolle-Bert
CVS patchset: 5415 CVS date: 2003/09/25 13:50:01
2003-09-25replace C++ style commentsDaniel Caujolle-Bert
CVS patchset: 5414 CVS date: 2003/09/25 13:47:17
2003-09-25IPv6 patch from Njål T. Borch <Njaal.Borch@njaal.net>Daniel Caujolle-Bert
CVS patchset: 5413 CVS date: 2003/09/25 13:42:19
2003-09-25Correct/add comment about xine_demux_flush_engine.Rocky Bernstein
CVS patchset: 5412 CVS date: 2003/09/25 02:57:51
2003-09-24Use inttypes.h or stdint.h as appropriate.Robin KAY
CVS patchset: 5411 CVS date: 2003/09/24 06:46:43
2003-09-22- Fix a bug introduced by the previous commit. The id3v2 tag identifier was ↵Thibaut Mattern
recognized as a mp3 header and the bitrate was computed from this identifier ! - Detect all id3v2 version, not only 2.3 - 1 kbit is 1000 bits, not 1024 - remove all funny BE_32() clones - some cleanups CVS patchset: 5410 CVS date: 2003/09/22 23:16:14
2003-09-22fix segfault when configuration fails because the resolution is too highJames Stembridge
CVS patchset: 5409 CVS date: 2003/09/22 21:34:10
2003-09-21- fix crasher in the CDDA plugin, better memory management for the cdrom_tocBastien Nocera
struct (Closes GNOME bugzilla #122834) CVS patchset: 5408 CVS date: 2003/09/21 12:29:59
2003-09-21One forgotten file for 'make dist'.František Dvořák
CVS patchset: 5407 CVS date: 2003/09/21 11:04:53
2003-09-21Add support for chroma keyed overlay graphics to video_out_pgx64 and fix ↵Robin KAY
various bugs. Fix incorrect colours when blending frame with a big-endian RGB pixel format. CVS patchset: 5406 CVS date: 2003/09/21 02:53:19
2003-09-21Add support for chroma keyed overlay graphics to video_out_pgx64 and fix ↵Robin KAY
various bugs. Fix incorrect colours when blending frame with a big-endian RGB pixel format. CVS patchset: 5405 CVS date: 2003/09/21 02:53:19
2003-09-20po-files update, czech translation updateFrantišek Dvořák
CVS patchset: 5404 CVS date: 2003/09/20 13:48:07
2003-09-18Adjust size of subtitle font ONLY according to get_text_size(),František Dvořák
which right handles multibyte strings. (current xine CVS adjusted size also before computing text size) Possibility to select the smallest font too. CVS patchset: 5403 CVS date: 2003/09/18 18:17:12
2003-09-18Generating codepages with more than 256 characters (max. 16-bit).František Dvořák
Right computing text size of multibyte texts in OSD. Different alias character for missing character in the conversion and in the font: #, _ CVS patchset: 5402 CVS date: 2003/09/18 18:14:50
2003-09-17remove else block that breaks on any compressed fileMike Melanson
CVS patchset: 5401 CVS date: 2003/09/17 23:57:15
2003-09-17Bounded defition with a check to ensure that it is not predefinedStephen Torri
before we define this instance of __attribute__ CVS patchset: 5400 CVS date: 2003/09/17 22:30:18
2003-09-17Another attempt to get the buffer and period sizes correct.James Courtier-Dutton
alsa-lib has problems if the buffer_size is an odd value, so this code tries to ensure that buffer_size never becomes odd. CVS patchset: 5399 CVS date: 2003/09/17 18:21:09
2003-09-17Fix one seeking bug in RIP: seeking behind or on savepos, if we areFrantišek Dvořák
before savepos for seekable original plugin and saving into fifo. I forgot test this case :-). CVS patchset: 5398 CVS date: 2003/09/17 17:15:50
2003-09-17Fix one thing: calling *_read() from original input plugin in theFrantišek Dvořák
rip_plugin_read_block(), it should be called *_read_block(). Problems occurs only for seeking with cdda input plugin and saving into fifo. CVS patchset: 5397 CVS date: 2003/09/17 17:14:12
2003-09-16Fix some compiler warnings.James Courtier-Dutton
CVS patchset: 5396 CVS date: 2003/09/16 19:34:25
2003-09-16XINE_EVENT_MRL_REFERENCE must not be used hereMiguel Freitas
CVS patchset: 5395 CVS date: 2003/09/16 14:23:37
2003-09-16The code that checked to see that the cdrom and dvdrom drives wereStephen Torri
usable by the user were never executed. The condition code to check the drive permissions was never false. The change here uses the access() function to check the permission of the drives. CVS patchset: 5394 CVS date: 2003/09/16 02:15:39
2003-09-16Removed headers that were providing nothing needed to the build.Stephen Torri
CVS patchset: 5393 CVS date: 2003/09/16 02:12:54
2003-09-16Removed headers that provided nothing needed to the build.Stephen Torri
Replaced 'while((int) ptr % alignment)' with 'while((size_t) ptr % alignment)' On a 32-bit architecture the comparision of ptr and alignment is fine. On a 64-bit architecture the comparision of ptr (32bits) and alignment (64bits) can cause problems in the desired behaviour. So casting the ptr to the same size as alignment cleared this issue. CVS patchset: 5392 CVS date: 2003/09/16 02:11:45
2003-09-16Quit being trigger happy when commiting.Stephen Torri
CVS patchset: 5391 CVS date: 2003/09/16 02:08:03
2003-09-16Removed header that providing nothing needed to the build.Stephen Torri
Definition of unsigned long long was replaced with uint64_t. The declaration of 'unsigned long long' is a new feature in C99. Since not all the features of C99 are supported in gcc and the ccc compiler a simple type change cleared the message. CVS patchset: 5390 CVS date: 2003/09/16 02:07:18
2003-09-16Removed headers that were serving no adding anything necessary to the build.Stephen Torri
CVS patchset: 5389 CVS date: 2003/09/16 02:03:16
2003-09-16Renamed a empty macro. Apparently the macro name __attribute__ was defined ↵Stephen Torri
earlier. This renaming removed the message that the macro was redefined. CVS patchset: 5388 CVS date: 2003/09/16 02:01:49
2003-09-15avoid implicit void argumentDaniel Caujolle-Bert
CVS patchset: 5387 CVS date: 2003/09/15 22:53:53
2003-09-15Try to track problems better. If a DVD fails to play, we will not get a ↵James Courtier-Dutton
little more info printed as to why it failed. CVS patchset: 5386 CVS date: 2003/09/15 21:52:09
2003-09-15that would failDaniel Caujolle-Bert
CVS patchset: 5385 CVS date: 2003/09/15 21:40:46
2003-09-15fix dist stageDaniel Caujolle-Bert
CVS patchset: 5384 CVS date: 2003/09/15 21:37:22
2003-09-15avoid memory corruption, then segfault when using the '#' mrl parametersDaniel Caujolle-Bert
CVS patchset: 5383 CVS date: 2003/09/15 19:02:23
2003-09-15add JeroenMiguel Freitas
CVS patchset: 5382 CVS date: 2003/09/15 14:25:17
2003-09-15Improve liba52 PTS processing.James Courtier-Dutton
CVS patchset: 5381 CVS date: 2003/09/15 04:02:45
2003-09-14Add multi-buffering support to video_out_pgx64 (massive performance increase ↵Robin KAY
^_^). Remove assertions for alignment from bswap.h and allow unaligned accesses in XE_xx macros on IA32. Update ChangeLog. CVS patchset: 5380 CVS date: 2003/09/14 22:02:26
2003-09-14viz plugin workThibaut Mattern
CVS patchset: 5379 CVS date: 2003/09/14 17:05:36
2003-09-14newer goom version.Thibaut Mattern
CVS patchset: 5378 CVS date: 2003/09/14 15:45:55
2003-09-14New files of the "new" goom version.Thibaut Mattern
CVS patchset: 5377 CVS date: 2003/09/14 15:39:23
2003-09-14Update changelog.James Courtier-Dutton
CVS patchset: 5376 CVS date: 2003/09/14 15:08:50
2003-09-142 forgotten printfThibaut Mattern
CVS patchset: 5375 CVS date: 2003/09/14 12:59:27
2003-09-14remove fft code, use fft.h instead.Thibaut Mattern
CVS patchset: 5374 CVS date: 2003/09/14 12:44:20
2003-09-14add fftgraph to the plugin catalogThibaut Mattern
CVS patchset: 5373 CVS date: 2003/09/14 12:37:30
2003-09-14fftgraph compilationThibaut Mattern
CVS patchset: 5372 CVS date: 2003/09/14 12:33:37
2003-09-14New viz plugin.Thibaut Mattern
CVS patchset: 5371 CVS date: 2003/09/14 12:30:36
2003-09-13fix colors of YUY2 overlay blendingMiguel Freitas
CVS patchset: 5370 CVS date: 2003/09/13 22:56:14
2003-09-13Add comments so that people know where this sort of stream comes from.James Courtier-Dutton
CVS patchset: 5369 CVS date: 2003/09/13 19:46:53
2003-09-13update from Darren HartMiguel Freitas
CVS patchset: 5368 CVS date: 2003/09/13 17:20:50