-
I have found some problem with animated subtitles. When I use direct3d vo in mplayer instead of fading - there are deformed pictures.
2009-09-20 15:22:47 UTC by al1erego
-
azzy_ changed the public information on the LibASS project.
2009-07-27 17:19:57 UTC by azzy_
-
Not really. At least glibc and OpenBSD libc both have integrated iconv, which does not have libiconv_open. So this would break it for most people. Can you provide more details about the environment?.
2009-07-21 12:17:26 UTC by nobody
-
You are right, libm should be added to the linker flags. So far it only works by accident; either because of one of the included library's dependencies or because of gcc, which has builtins for most libm functions. I added a check to the configure script.
2009-07-21 12:14:19 UTC by nobody
-
priv->settings.default_family and priv->settings.default_font are freed twice in ass_set_fonts in greg's git. This patch fixes it. This partly reverses commit 490865d.
2009-07-19 14:58:14 UTC by martin_sourada
-
azzy_ changed the public information on the LibASS project.
2009-07-13 17:28:16 UTC by azzy_
-
azzy_ changed the public information on the LibASS project.
2009-07-13 17:27:22 UTC by azzy_
-
See . iconv_open is replaced by libiconv_open. So the test code of configure,
#ifdef __cplusplus
extern "C"
#endif
char iconv_open ();
int
main ()
{
return iconv_open ();
;
return 0;
}
should change to
#ifdef __cplusplus
extern "C"
#endif
char libiconv_open ();
int
main ()
{
return libiconv_open ();
;
return 0;
}.
2009-06-30 07:41:15 UTC by nobody
-
-lm should be added to $LIBS. Works because other libs already do, but libass should link directly to it.
I don't submit a patch because I know -lm is needed in Linux, but I don't know if the functions are in libc or anything else in other systems.
2009-06-22 10:41:51 UTC by reddwarf69
-
azzy_ added the libass-0.9.6.tar.bz2 file.
2009-03-13 18:11:02 UTC by azzy_