Age | Commit message (Collapse) | Author |
|
CVS patchset: 4692
CVS date: 2003/04/26 22:34:31
|
|
CVS patchset: 4680
CVS date: 2003/04/26 00:19:21
|
|
CVS patchset: 4662
CVS date: 2003/04/23 15:51:02
|
|
please be gentle with me; Everything builds except for the win32 ui
CVS patchset: 4650
CVS date: 2003/04/22 23:30:29
|
|
old open() function replaced by :
*_class_get_instance() : return an instance if the plugin handles the mrl
*_plugin_open() : open the stream
CVS patchset: 4598
CVS date: 2003/04/13 16:02:53
|
|
CVS patchset: 4574
CVS date: 2003/04/08 17:51:23
|
|
CVS patchset: 4572
CVS date: 2003/04/08 13:58:11
|
|
CVS patchset: 4566
CVS date: 2003/04/07 18:13:19
|
|
CVS patchset: 4562
CVS date: 2003/04/07 16:51:29
|
|
CVS patchset: 4557
CVS date: 2003/04/06 23:44:59
|
|
(with more than one cell per PG, only the first cell starts at 0; for the others,
we need pg_start)
* check for title sanity
* fix tsble -> table typo
CVS patchset: 4549
CVS date: 2003/04/06 13:19:59
|
|
Currently needs libdvdnav cvs, but does not break xine's own libdvdnav version.
CVS patchset: 4547
CVS date: 2003/04/06 13:06:03
|
|
CVS patchset: 4546
CVS date: 2003/04/06 12:11:10
|
|
if the CD/DVD isn't mounted, which definitely breaks the CDDA plugin... better than nothing
CVS patchset: 4542
CVS date: 2003/04/06 00:51:29
|
|
(see thread on xine-devel for details)
CVS patchset: 4540
CVS date: 2003/04/05 12:28:15
|
|
obs: more messages should be added
CVS patchset: 4539
CVS date: 2003/04/04 19:20:46
|
|
CVS patchset: 4535
CVS date: 2003/04/03 13:04:52
|
|
arrives from input_dvd.c before we have our this->menu_handle back.
CVS patchset: 4527
CVS date: 2003/04/01 11:45:32
|
|
CVS patchset: 4511
CVS date: 2003/03/30 10:57:48
|
|
* some changes to mutual header inclusion to make it compile warning-less
when tracing is enabled
* title/part jumping should work much more reliable now
CVS patchset: 4509
CVS date: 2003/03/29 13:19:08
|
|
CVS patchset: 4497
CVS date: 2003/03/27 13:48:03
|
|
based seeking,
although this differs from the behaviour up to now, PGC based seeking is now the
default, since this is what people usually expect, what hardware players do and it
is needed for separate subtitles to work with DVDs.
CVS patchset: 4481
CVS date: 2003/03/25 13:20:31
|
|
CVS patchset: 4400
CVS date: 2003/03/13 22:09:51
|
|
CVS patchset: 4396
CVS date: 2003/03/12 13:28:12
|
|
CVS patchset: 4330
CVS date: 2003/03/04 10:30:27
|
|
All assert() function calls, with exceptions of libdvdread and libdvdnav, have been
replaced with XINE_ASSERT. Functionally XINE_ASSERT behaves just likes its predecesor but its
adding the ability to print out a stack trace at the point where the assertion fails.
So here are a few examples.
assert (0);
This use of assert was found in a couple locations most favorably being the default case of a switch
statement. This was the only thing there. So if the switch statement was unable to find a match
it would have defaulted to this and the user and the developers would be stuck wonder who died and where.
So it has been replaced with
XINE_ASSERT(0, "We have reach this point and don't have a default case");
It may seem a bit none descriptive but there is more going on behind the scene.
In addition to checking a condition is true/false, in this case '0', the XINE_ASSERT
prints out:
<filename>:<function name>:<line number> - assertion '<assertion expression>' failed. <description>
An example of this might be:
input_dvd.c:open_plugin:1178 - assertion '0' failed. xine_malloc failed!!! You have run out of memory
XINE_ASSERT and its helper function, print_trace, are found in src/xine-utils/xineutils.h
CVS patchset: 4301
CVS date: 2003/02/28 02:51:47
|
|
(that is: wait for the fifos to become empty)
CVS patchset: 4292
CVS date: 2003/02/26 20:45:18
|
|
quoting the ChangeLog:
* some bugfixes
* code cleanup
* build process polishing
* more sensible event order in get_next_block to ensure useful event delivery
* VOBU level resume
* fixed: seeking in a multiangle feature briefly showed the wrong angle
CVS patchset: 4217
CVS date: 2003/02/20 16:01:57
|
|
CVS patchset: 4157
CVS date: 2003/02/14 18:00:38
|
|
(the _cool_ menu in xine-ui displays the correct languages now)
CVS patchset: 4144
CVS date: 2003/02/13 16:24:27
|
|
CVS patchset: 4132
CVS date: 2003/02/11 15:17:10
|
|
(thanks Chris Rankin for noticing)
CVS patchset: 3693
CVS date: 2002/12/27 16:47:10
|
|
(this is why xine_demux_flush_engine was created, to avoid redundant code)
CVS patchset: 3641
CVS date: 2002/12/22 23:35:42
|
|
different sizeof than integer.
- add extra_info structure to pass informations from input/demuxers down
to the output frame. this can be used, for example, to pass the frame
number of a frame (when known by decoder). also, immediate benefict is
that we now have a slider which really shows the current position of
the playing stream. new fields can be added to extra_info keeping
binary compatibility
- bumpy everybody's api versions
CVS patchset: 3603
CVS date: 2002/12/21 12:56:44
|
|
- check mrl before allocating plugin context, so it doesn't get initialized for
non-dvd streams
CVS patchset: 3448
CVS date: 2002/12/06 18:44:40
|
|
* revert my removing of the clock adjustment; although this is bad, it seems
to be the best solution for now (menu transitions have choppy audio without)
* add patch from Marco Zühlke enabling dvd device specification by MRL
* update GUI title and language display once immediately after plugin open
CVS patchset: 3352
CVS date: 2002/11/23 12:41:04
|
|
CVS patchset: 3351
CVS date: 2002/11/23 11:09:29
|
|
that now
(This should fix Daniels MP3 problems, since the end of one stream would
have adjusted the global clock thus affecting all other streams.)
CVS patchset: 3334
CVS date: 2002/11/22 16:23:58
|
|
* new public output interface xine_{audio,video}_port_t instead of
xine_{ao,vo}_driver_t, old names kept as aliases for compatibility
* modified the engine to allow multiple streams per output
* renaming of some internal structures according to public changes
* moving SCR out of per-stream-metronom into a global metronom_clock_t
residing in xine_t and therefore easily available to the output layer
* adapting all available plugins
(note to external projects: the compiler will help you a lot, if a plugin
compiles, it is adapted, because all changes add new parameters to some
functions)
* bump up all interface versions because of xine_t and xine_stream_t changes
CVS patchset: 3312
CVS date: 2002/11/20 11:57:38
|
|
CVS patchset: 3291
CVS date: 2002/11/18 11:48:35
|
|
fix ejecting (works now)
CVS patchset: 3288
CVS date: 2002/11/18 11:33:59
|
|
introduce a seekable flag
CVS patchset: 3277
CVS date: 2002/11/17 16:23:38
|
|
(+ missed ffmpeg/dv patch)
CVS patchset: 3263
CVS date: 2002/11/15 00:20:31
|
|
CVS patchset: 3174
CVS date: 2002/11/03 23:03:30
|
|
I think this is right, so we provide one
CVS patchset: 3148
CVS date: 2002/11/02 15:13:01
|
|
CVS patchset: 3138
CVS date: 2002/11/02 03:13:44
|
|
CVS patchset: 3128
CVS date: 2002/11/01 17:51:57
|
|
CVS patchset: 3124
CVS date: 2002/11/01 11:48:59
|
|
(mostly turning :// into :/)
CVS patchset: 3113
CVS date: 2002/10/31 17:00:44
|
|
CVS patchset: 3050
CVS date: 2002/10/27 20:07:39
|