2003-04-16 07:52:54 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2003> David A. Schleef <ds@schleef.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 23:05:09 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2003-04-16 07:52:54 +00:00
|
|
|
*/
|
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
#ifndef __VIDEO_TEST_SRC_H__
|
|
|
|
#define __VIDEO_TEST_SRC_H__
|
2003-04-16 07:52:54 +00:00
|
|
|
|
2006-01-10 10:06:53 +00:00
|
|
|
#include <glib.h>
|
2005-05-09 01:20:55 +00:00
|
|
|
|
2010-08-23 06:01:19 +00:00
|
|
|
struct vts_color_struct {
|
2010-07-21 12:20:03 +00:00
|
|
|
guint8 Y, U, V, A;
|
2010-08-23 06:01:19 +00:00
|
|
|
guint8 R, G, B;
|
|
|
|
guint16 gray;
|
2008-11-19 00:24:44 +00:00
|
|
|
};
|
2010-08-23 06:01:19 +00:00
|
|
|
|
2003-04-16 07:52:54 +00:00
|
|
|
|
|
|
|
typedef struct paintinfo_struct paintinfo;
|
2012-06-06 09:15:50 +00:00
|
|
|
|
2003-04-16 07:52:54 +00:00
|
|
|
struct paintinfo_struct
|
|
|
|
{
|
2010-08-23 06:01:19 +00:00
|
|
|
const struct vts_color_struct *colors;
|
|
|
|
const struct vts_color_struct *color;
|
2012-06-06 09:15:50 +00:00
|
|
|
|
2010-09-10 19:48:30 +00:00
|
|
|
void (*paint_tmpline) (paintinfo * p, int x, int w);
|
2012-05-29 15:48:45 +00:00
|
|
|
void (*convert_tmpline) (paintinfo * p, GstVideoFrame *frame, int y);
|
2012-06-06 09:15:50 +00:00
|
|
|
void (*convert_hline) (paintinfo * p, GstVideoFrame *frame, int y);
|
2013-05-17 14:26:49 +00:00
|
|
|
GstVideoChromaResample *subsample;
|
2010-09-13 03:36:19 +00:00
|
|
|
int x_offset;
|
2010-09-10 19:48:30 +00:00
|
|
|
|
2012-06-06 09:15:50 +00:00
|
|
|
int x_invert;
|
|
|
|
int y_invert;
|
2010-09-13 03:36:19 +00:00
|
|
|
|
|
|
|
guint8 *tmpline;
|
|
|
|
guint8 *tmpline2;
|
|
|
|
guint8 *tmpline_u8;
|
2012-05-29 15:48:45 +00:00
|
|
|
guint16 *tmpline_u16;
|
2010-09-06 03:35:13 +00:00
|
|
|
|
2013-05-17 14:26:49 +00:00
|
|
|
guint n_lines;
|
|
|
|
gint offset;
|
|
|
|
gpointer *lines;
|
|
|
|
|
2010-09-06 03:35:13 +00:00
|
|
|
struct vts_color_struct foreground_color;
|
|
|
|
struct vts_color_struct background_color;
|
2003-04-16 07:52:54 +00:00
|
|
|
};
|
2012-05-29 15:48:45 +00:00
|
|
|
#define PAINT_INFO_INIT {0, }
|
2003-04-16 07:52:54 +00:00
|
|
|
|
2014-11-28 00:02:49 +00:00
|
|
|
void gst_video_test_src_smpte (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_smpte75 (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_snow (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_black (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_white (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_red (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_green (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_blue (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_solid (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_blink (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_checkers1 (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_checkers2 (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_checkers4 (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_checkers8 (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_circular (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_zoneplate (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_gamut (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_chromazoneplate (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_ball (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_smpte100 (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_bar (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame *frame);
|
|
|
|
void gst_video_test_src_pinwheel (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame * frame);
|
|
|
|
void gst_video_test_src_spokes (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame * frame);
|
|
|
|
void gst_video_test_src_gradient (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame * frame);
|
|
|
|
void gst_video_test_src_colors (GstVideoTestSrc * v, GstClockTime pts, GstVideoFrame * frame);
|
2010-09-16 15:15:32 +00:00
|
|
|
|
2003-04-16 07:52:54 +00:00
|
|
|
#endif
|