[vlc-devel] commit: Fixed filter_*Blend rgb masks initialization. (Laurent Aimar )
git version control
git at videolan.org
Tue Jul 28 22:53:45 CEST 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Tue Jul 28 22:50:28 2009 +0200| [30086cdcb5559b0d2520dfece8fe7879995af4b4] | committer: Laurent Aimar
Fixed filter_*Blend rgb masks initialization.
It fixes at least RGB blending with opengl on little indian arch.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=30086cdcb5559b0d2520dfece8fe7879995af4b4
---
include/vlc_filter.h | 7 +++++--
modules/video_filter/logo.c | 2 +-
src/misc/filter.c | 13 +++++++++++--
src/video_output/vout_subpictures.c | 2 +-
4 files changed, 18 insertions(+), 6 deletions(-)
diff --git a/include/vlc_filter.h b/include/vlc_filter.h
index a8a8a06..9ec2217 100644
--- a/include/vlc_filter.h
+++ b/include/vlc_filter.h
@@ -182,9 +182,12 @@ static inline block_t *filter_NewAudioBuffer( filter_t *p_filter, int i_size )
}
/**
- * It creates a blend filter
+ * It creates a blend filter.
+ *
+ * Only the chroma properties of the dest format is used (chroma
+ * type, rgb masks and shifts)
*/
-VLC_EXPORT( filter_t *, filter_NewBlend, ( vlc_object_t *, vlc_fourcc_t i_chroma_dst ) );
+VLC_EXPORT( filter_t *, filter_NewBlend, ( vlc_object_t *, const video_format_t *p_dst_chroma ) );
/**
* It configures blend filter parameters that are allowed to changed
diff --git a/modules/video_filter/logo.c b/modules/video_filter/logo.c
index f8b2b14..ef7f067 100644
--- a/modules/video_filter/logo.c
+++ b/modules/video_filter/logo.c
@@ -243,7 +243,7 @@ static int OpenCommon( vlc_object_t *p_this, bool b_sub )
{
p_sys->p_blend = filter_NewBlend( VLC_OBJECT(p_filter),
- p_filter->fmt_in.i_codec );
+ &p_filter->fmt_in );
if( !p_sys->p_blend )
{
free( p_sys );
diff --git a/src/misc/filter.c b/src/misc/filter.c
index 7ced511..7359982 100644
--- a/src/misc/filter.c
+++ b/src/misc/filter.c
@@ -30,7 +30,7 @@
#include <vlc_filter.h>
filter_t *filter_NewBlend( vlc_object_t *p_this,
- vlc_fourcc_t i_chroma_dst )
+ const video_format_t *p_dst_chroma )
{
filter_t *p_blend = vlc_custom_create( p_this, sizeof(*p_blend),
VLC_OBJECT_GENERIC, "blend" );
@@ -42,7 +42,16 @@ filter_t *filter_NewBlend( vlc_object_t *p_this,
es_format_Init( &p_blend->fmt_out, VIDEO_ES, 0 );
p_blend->fmt_out.i_codec =
- p_blend->fmt_out.video.i_chroma = i_chroma_dst;
+ p_blend->fmt_out.video.i_chroma = p_dst_chroma->i_chroma;
+ p_blend->fmt_out.video.i_rmask = p_dst_chroma->i_rmask;
+ p_blend->fmt_out.video.i_gmask = p_dst_chroma->i_gmask;
+ p_blend->fmt_out.video.i_bmask = p_dst_chroma->i_bmask;
+ p_blend->fmt_out.video.i_rrshift= p_dst_chroma->i_rrshift;
+ p_blend->fmt_out.video.i_rgshift= p_dst_chroma->i_rgshift;
+ p_blend->fmt_out.video.i_rbshift= p_dst_chroma->i_rbshift;
+ p_blend->fmt_out.video.i_lrshift= p_dst_chroma->i_lrshift;
+ p_blend->fmt_out.video.i_lgshift= p_dst_chroma->i_lgshift;
+ p_blend->fmt_out.video.i_lbshift= p_dst_chroma->i_lbshift;
/* The blend module will be loaded when needed with the real
* input format */
diff --git a/src/video_output/vout_subpictures.c b/src/video_output/vout_subpictures.c
index a7976fe..9920b34 100644
--- a/src/video_output/vout_subpictures.c
+++ b/src/video_output/vout_subpictures.c
@@ -421,7 +421,7 @@ void spu_RenderSubpictures( spu_t *p_spu,
/* Create the blending module */
if( !p_sys->p_blend )
- p_spu->p->p_blend = filter_NewBlend( VLC_OBJECT(p_spu), p_fmt_dst->i_chroma );
+ p_spu->p->p_blend = filter_NewBlend( VLC_OBJECT(p_spu), p_fmt_dst );
/* Process all subpictures and regions (in the right order) */
for( unsigned int i_index = 0; i_index < i_subpicture; i_index++ )
More information about the vlc-devel
mailing list