| Age | Commit message (Collapse) | Author | 
|---|
|  | CVS patchset: 4355
CVS date: 2003/03/07 01:22:54 | 
|  | 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 | 
|  | CVS patchset: 4271
CVS date: 2003/02/23 22:03:16 | 
|  | CVS patchset: 4263
CVS date: 2003/02/23 14:18:59 | 
|  | CVS patchset: 4259
CVS date: 2003/02/23 01:22:56 | 
|  | CVS patchset: 4256
CVS date: 2003/02/22 17:32:31 | 
|  | CVS patchset: 4238
CVS date: 2003/02/22 01:17:21 | 
|  | CVS patchset: 4210
CVS date: 2003/02/20 02:13:19 | 
|  | CVS patchset: 4206
CVS date: 2003/02/19 22:15:43 | 
|  | CVS patchset: 4203
CVS date: 2003/02/19 21:37:15 | 
|  | function from stdlib.h
CVS patchset: 4104
CVS date: 2003/02/04 22:01:34 | 
|  | CVS patchset: 4102
CVS date: 2003/02/04 09:50:22 | 
|  | CVS patchset: 4099
CVS date: 2003/02/03 02:08:59 | 
|  | CVS patchset: 4091
CVS date: 2003/02/02 15:42:04 | 
|  | CVS patchset: 4084
CVS date: 2003/02/02 06:08:30 | 
|  | CVS patchset: 4068
CVS date: 2003/01/31 18:29:43 | 
|  | CVS patchset: 4044
CVS date: 2003/01/29 18:30:40 | 
|  | CVS patchset: 4036
CVS date: 2003/01/29 11:10:50 | 
|  | CVS patchset: 3858
CVS date: 2003/01/10 23:33:09 | 
|  | CVS patchset: 3844
CVS date: 2003/01/09 12:23:39 | 
|  | CVS patchset: 3829
CVS date: 2003/01/08 13:19:05 | 
|  | - fixes wma bugs
- mace, huffyuv and mp3 decoders imported (but not enabled)
tested: wma (v1 and v2), mpeg4, msmpeg4 v1, v2 and v3, divx3, divx4, divx5, xvid and
dv decoders. everything looks fine.
CVS patchset: 3828
CVS date: 2003/01/08 13:18:42 | 
|  | for more information see message on xine-devel
CVS patchset: 3818
CVS date: 2003/01/08 01:02:27 | 
|  | CVS patchset: 3810
CVS date: 2003/01/07 16:36:52 | 
|  | CVS patchset: 3657
CVS date: 2002/12/23 21:26:12 | 
|  | CVS patchset: 3623
CVS date: 2002/12/22 00:35:04 | 
|  | - video output problems are caused by deinterlace code, not ffmpeg
CVS patchset: 3605
CVS date: 2002/12/21 14:57:36 | 
|  | 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 | 
|  | CVS patchset: 3586
CVS date: 2002/12/18 21:35:41 | 
|  | decode the next frame
CVS patchset: 3569
CVS date: 2002/12/17 00:30:07 | 
|  | CVS patchset: 3567
CVS date: 2002/12/16 23:47:57 | 
|  | CVS patchset: 3553
CVS date: 2002/12/16 00:32:12 | 
|  | CVS patchset: 3520
CVS date: 2002/12/14 16:43:22 | 
|  | CVS patchset: 3466
CVS date: 2002/12/08 22:24:28 | 
|  | - improve ffmpeg support (passing extra data)
- aspect ratio still need to be updated to new syntax
- use our svq1 decoder since ffmpeg one is segfaulting
  (buffer overrun - more investigation needed)
- img->copy no more
CVS patchset: 3437
CVS date: 2002/12/06 01:55:32 | 
|  | CVS patchset: 3424
CVS date: 2002/12/04 05:51:46 | 
|  | CVS patchset: 3418
CVS date: 2002/12/03 22:13:52 | 
|  | CVS patchset: 3414
CVS date: 2002/12/02 21:58:56 | 
|  | will build all dependent parts (e.g. libxine.la). The directory must still
be prepared by running autogen.sh.
CVS patchset: 3331
CVS date: 2002/11/22 05:25:14 | 
|  | * 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 | 
|  | (half-work to enable seeking to keyframes with asf demux)
CVS patchset: 3283
CVS date: 2002/11/18 00:32:20 | 
|  | CVS patchset: 3273
CVS date: 2002/11/16 16:40:23 | 
|  | CVS patchset: 3268
CVS date: 2002/11/15 18:03:57 | 
|  | (+ missed ffmpeg/dv patch)
CVS patchset: 3263
CVS date: 2002/11/15 00:20:31 | 
|  | CVS patchset: 3261
CVS date: 2002/11/14 23:27:44 | 
|  | CVS patchset: 3258
CVS date: 2002/11/14 04:22:55 | 
|  | CVS patchset: 3255
CVS date: 2002/11/13 03:22:41 | 
|  | http://sourceforge.net/mailarchive/forum.php?thread_id=1297475&forum_id=7131
CVS patchset: 3250
CVS date: 2002/11/12 18:40:50 | 
|  | parameters.
CVS patchset: 3236
CVS date: 2002/11/11 16:22:58 | 
|  | CVS patchset: 3235
CVS date: 2002/11/11 13:47:39 |