Age | Commit message (Collapse) | Author |
|
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: 4238
CVS date: 2003/02/22 01:17:21
|
|
CVS patchset: 4068
CVS date: 2003/01/31 18:29:43
|
|
- 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
|
|
CVS patchset: 3623
CVS date: 2002/12/22 00:35:04
|
|
- 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: 3414
CVS date: 2002/12/02 21:58:56
|
|
- add wma decoder
- fix mmx macro
- remove changes from fdct_mmx.c (it should work fine now with the mmx macro fix)
CVS patchset: 3234
CVS date: 2002/11/11 13:45:34
|
|
CVS patchset: 3090
CVS date: 2002/10/29 16:29:16
|
|
CVS patchset: 2984
CVS date: 2002/10/24 15:03:11
|
|
CVS patchset: 2932
CVS date: 2002/10/22 06:34:01
|
|
something must be broken at ffmpeg, also happens with mplayer)
- added priority sorted lists, now autoprobing should work again.
- fixed infinite loop in plugin loader.
obs: latest ffmpeg contains ppc optimizations, someone will have to enable these
though.
CVS patchset: 2676
CVS date: 2002/09/16 21:49:34
|
|
- apply Zdenek Kabelac patches to enable -fpic compiling (why this stuff isn't in
ffmpeg cvs?)
CVS patchset: 2402
CVS date: 2002/08/07 19:46:28
|
|
CVS patchset: 2277
CVS date: 2002/07/15 19:42:40
|
|
- skip decoding b-frames when late
CVS patchset: 2185
CVS date: 2002/07/01 13:32:38
|
|
Just remove "const" for non-gcc compilers.
CVS patchset: 2166
CVS date: 2002/06/26 15:52:12
|
|
thanks to the ffmpeg team for their amazing work!
CVS patchset: 2141
CVS date: 2002/06/23 21:04:35
|
|
diff_to_ffmpeg_cvs.txt updated.
tested only on x86, please report any problems, compilation errors, etc.
alpha architecture added but makefiles were not updated.
CVS patchset: 2058
CVS date: 2002/06/10 14:51:26
|
|
CVS patchset: 1778
CVS date: 2002/04/26 17:29:34
|
|
ffmpeg-guys: impressive work\!\!)
CVS patchset: 1690
CVS date: 2002/04/06 20:51:22
|
|
CVS patchset: 1558
CVS date: 2002/03/12 00:40:52
|
|
CVS patchset: 1315
CVS date: 2001/12/27 21:06:08
|
|
not so, with the bad type (problem&fix reported to ffmpeg, and now re-imported
from ffmpeg cvs)
CVS patchset: 831
CVS date: 2001/10/18 14:45:58
|
|
Freitas
CVS patchset: 510
CVS date: 2001/08/28 19:16:19
|
|
motion jpeg decoding
CVS patchset: 395
CVS date: 2001/08/07 12:41:46
|