1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-07 03:56:28 +02:00
Commit Graph

1162 Commits

Author SHA1 Message Date
Cheng Sun
d4a0e2e215 Allow blendbench to bail out gracefully instead of crash when base image cannot be found
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
2011-12-22 22:58:27 +01:00
Jean-Baptiste Kempf
81d70dce4e Fix distcheck after yadif commit 2011-12-22 13:44:17 +01:00
Naohiro KORIYAMA
5c7c27cae5 yadif : Add SSSE3 and SSE2 support. porting from FFmpeg.
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
2011-12-21 21:36:14 +01:00
Pere Orga
9abcaacf83 fix filename self-references
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-12-15 17:09:31 +02:00
Rafaël Carré
26ce585efb remoteosd: handle VLC_ADD_LIBS 2011-11-26 15:00:43 -05:00
Rémi Denis-Courmont
17a681a2a6 Move some gcrypt-related logic to makefiles 2011-11-25 17:21:30 +02:00
Rémi Duraffort
e854291dba grain: fix clobber list
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-11-24 22:41:16 +02:00
Rémi Duraffort
c68a4ce308 gradfun: define the clobber list
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-11-24 22:41:16 +02:00
Cheng Sun
c536c705ff hqdn3d video filter, ported from mplayer
High Quality DeNoise 3D, a port of the MPlayer filter, removes high-frequency
noise while minimizing blending artifacts by performing a 3-way low-pass filter

To open source programmers across the world:
   MAY THE FOO
   BE WITH YOU

(PS: code-fu, that is)
(PPS: blame funman)

Signed-off-by: Rafaël Carré <funman@videolan.org>
2011-11-23 14:25:52 -05:00
Can Wu
b009862bea introduce VLC_CLIP() macro to replace use pair of __MAX() and __MIN()
Signed-off-by: Rafaël Carré <funman@videolan.org>
2011-11-16 15:14:00 -05:00
Rémi Denis-Courmont
bba88abc2c Revert "gradfun: define the clobber list"
This reverts commit 07df00dc72.
2011-11-11 17:09:27 +02:00
Rémi Denis-Courmont
e4a69b3a85 Revert "grain: fix clobber list"
This broke compilation.

This reverts commit 5b859717c1.
2011-11-11 17:08:27 +02:00
Rémi Duraffort
5b859717c1 grain: fix clobber list 2011-11-11 15:39:29 +01:00
Rémi Duraffort
07df00dc72 gradfun: define the clobber list 2011-11-11 15:29:44 +01:00
Jean-Baptiste Kempf
4ae75d4717 Wall: set the default center element to 16:9
Since this is the default AR for Home Theaters Projectors
2011-11-01 14:27:45 +01:00
Jean-Baptiste Kempf
c22b7e0ece Video Filter: use rgb to define colors 2011-10-31 00:42:19 +01:00
KO Myung-Hun
3d5dcf8b0c Include missing unistd.h and time.h for OS/2
Modified-by: Rémi Denis-Courmont <remi@remlab.net>
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-10-14 18:17:55 +03:00
Jean-Baptiste Kempf
55aa5282b7 Ball filter: quick fix for static data 2011-10-10 17:14:02 +02:00
Laurent Aimar
5b323eff12 Fixed the value set in text_style_t::i_font_alpha by the marquee filter.
It partially closes #5375.
2011-10-05 23:17:36 +02:00
Laurent Aimar
eb71a0059f Reject > 8 bits per pixel colorspace in gradfun/grain/transform video filters. 2011-10-05 23:17:36 +02:00
Jean-Baptiste Kempf
d50f38f9d9 Fix building of osdmenu plugin
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
2011-10-02 22:04:08 +02:00
Rémi Denis-Courmont
7eb551db1c Remove 0.9.x deprecated aliases, add deprecation version where missing 2011-10-02 14:50:34 +03:00
Yuval Tze
e4bf5fafb7 Subsdelay default min-alpha value
change default min-alpha value to 70

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
2011-09-15 15:57:17 +02:00
Rafaël Carré
364cb74d30 Sepia8ySSE2(): remove forward declaration
make the function static inline
don't compile it at all if we can't compile SSE2
2011-09-13 18:33:43 -04:00
Rémi Denis-Courmont
8f683236f8 Improve vlc_memalign()
- use native MingW back-end on Windows, instead of kludges,
 - remove "base" pointer parameter,
 - inline.
2011-09-05 23:44:06 +03:00
Laurent Aimar
a362875665 Fixed extract video filter when requesting black color.
It closes #4695.
2011-09-05 21:00:07 +02:00
Rémi Denis-Courmont
c768a6cfcf grain: remove callback before destroying callback data 2011-09-01 00:02:16 +03:00
Rémi Denis-Courmont
05f6eeb5dd gradfun: remove callback before destroying callback data 2011-09-01 00:02:16 +03:00
Rémi Denis-Courmont
80a49e5965 Cast or convert <ctype.h> functions it parameters to unsigned char 2011-08-29 19:20:15 +03:00
Pierre Ynard
ba1511a1ed adjust: fix typo 2011-08-22 21:47:58 +02:00
Pierre Ynard
5308fc8f88 adjust: distribute header file 2011-08-22 21:38:06 +02:00
Jean-Baptiste Kempf
8c3bda6225 adjust: remove unnecessary header 2011-08-22 19:40:44 +02:00
Martin Briza
8233fd8c79 Split adjust filter in two source files
Preparation for adding assembly hue/saturation processing functions

Two new function pointers in p_sys to clipping and non-clipping U and V channel processing cycle

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
2011-08-22 19:37:22 +02:00
Jean-Baptiste Kempf
6e9418c320 RemoteOSD: Simplify, remove warning and remove headers 2011-08-18 12:21:32 +02:00
Jean-Baptiste Kempf
c688c805a4 Mosaic: remove unused variable 2011-08-17 15:07:12 +02:00
Jean-Baptiste Kempf
775d5757e1 Antiflicker: Change permissions 2011-08-13 01:51:37 +02:00
Kaarlo Raiha
5a38551e41 Change brighness to brightness
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-07-30 17:37:58 +03:00
Kaarlo Raiha
33922127c7 Change allways to always
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-07-30 17:33:22 +03:00
Kaarlo Raiha
ca86f8e1bd Add . and whitespace
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-07-30 17:33:22 +03:00
Kaarlo Raiha
307c481519 Change loadedin to loaded in
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-07-30 17:33:22 +03:00
Kaarlo Raiha
7abc4f7cd2 Change saturaton to saturation
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-07-30 17:33:21 +03:00
Kaarlo Raiha
32f2fc030a Change bluring to blurring
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-07-30 17:33:21 +03:00
Kaarlo Raiha
01bb3dd63d Change positionning to positioning
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-07-30 17:33:21 +03:00
Kaarlo Raiha
6c481ae083 Change coeff to coefficient
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-07-30 17:33:21 +03:00
Rémi Denis-Courmont
2188759b7a Use Unix EOLs and remove trailing spaces 2011-07-25 19:00:55 +03:00
Benjamin Drung
f9c6f26c2d Fix typo 'allows to do' -> 'allows doing'
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-07-25 18:43:50 +03:00
Rémi Denis-Courmont
09e0d5d7d3 osdmenu: fix data path on Linux
Optimize for installed VLC rather than running from $(top_srcdir).
This patch does not support relocation, so there is potential for
further improvements.
2011-07-21 23:47:41 +03:00
Rémi Denis-Courmont
e4b0862ff2 Convert mosaic to global mutex
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2011-07-21 17:24:04 +03:00
Rémi Denis-Courmont
0bbdffbd8f Move rv32 to video_chroma directory 2011-07-13 19:04:58 +03:00
Rémi Duraffort
7dc37abef1 Remove some unneeded leading __ in functions names 2011-07-13 10:48:03 +02:00