summaryrefslogtreecommitdiffstats
path: root/gst/videomixer/blend_i420.c
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-06-30 12:39:19 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-07-10 14:37:07 +0200
commitace4cb229542ae2c4ca8331d840e6bb3acd03c22 (patch)
tree24c0df8db39f2b234c82f2bc38e44a9d34beeee7 /gst/videomixer/blend_i420.c
parent3ebf5e9a2ab3ede71556d63f9d678b082e408af5 (diff)
videomixer: Make debugging category global to all the code.
Diffstat (limited to 'gst/videomixer/blend_i420.c')
-rw-r--r--gst/videomixer/blend_i420.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/videomixer/blend_i420.c b/gst/videomixer/blend_i420.c
index 91fa792f..8d7399bc 100644
--- a/gst/videomixer/blend_i420.c
+++ b/gst/videomixer/blend_i420.c
@@ -22,6 +22,7 @@
#include <gst/gst.h>
#include <string.h>
+#include "videomixer.h"
#define BLEND_NORMAL(Y1,U1,V1,Y2,U2,V2,alpha,Y,U,V) \
Y = ((Y1*(255-alpha))+(Y2*alpha))>>8; \