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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2007-05-15 03:53:11 +00:00
|
|
|
enum {
|
|
|
|
VTS_YUV,
|
|
|
|
VTS_RGB,
|
2009-05-26 12:38:43 +00:00
|
|
|
VTS_GRAY,
|
2007-05-15 03:53:11 +00:00
|
|
|
VTS_BAYER
|
|
|
|
};
|
2005-07-28 18:42:54 +00:00
|
|
|
|
2008-11-19 00:24:44 +00:00
|
|
|
struct vts_color_struct_yuv {
|
|
|
|
guint8 Y, U, V;
|
|
|
|
};
|
|
|
|
struct vts_color_struct_rgb {
|
|
|
|
guint8 R, G, B;
|
2003-04-16 07:52:54 +00:00
|
|
|
};
|
2009-05-26 12:38:43 +00:00
|
|
|
struct vts_color_struct_gray {
|
|
|
|
guint16 G;
|
|
|
|
};
|
2003-04-16 07:52:54 +00:00
|
|
|
|
|
|
|
typedef struct paintinfo_struct paintinfo;
|
|
|
|
struct paintinfo_struct
|
|
|
|
{
|
2005-12-06 19:42:02 +00:00
|
|
|
unsigned char *dest; /* pointer to first byte of video data */
|
2004-07-22 15:55:33 +00:00
|
|
|
unsigned char *yp, *up, *vp; /* pointers to first byte of each component
|
2005-12-06 19:42:02 +00:00
|
|
|
* for both packed/planar YUV and RGB */
|
gst/videotestsrc/videotestsrc.*: Add support for AYUV and the various RGBA formats. Initialise fields of paintinfo st...
Original commit message from CVS:
* gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
(paint_get_structure), (gst_video_test_src_get_size),
(gst_video_test_src_smpte), (gst_video_test_src_snow),
(gst_video_test_src_unicolor), (paint_setup_AYUV),
(paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
(paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
* gst/videotestsrc/videotestsrc.h:
Add support for AYUV and the various RGBA formats. Initialise
fields of paintinfo structs allocated on the stack.
* tests/check/elements/videotestsrc.c: (right_shift_colour),
(fix_expected_colour), (check_rgb_buf), (got_buf_cb),
(GST_START_TEST), (videotestsrc_suite):
Add unit tests for videotestsrc's RGB output.
2006-09-02 12:59:48 +00:00
|
|
|
unsigned char *ap; /* pointer to first byte of alpha component */
|
2005-12-06 19:42:02 +00:00
|
|
|
unsigned char *endptr; /* pointer to byte beyond last video data */
|
2004-01-09 01:53:31 +00:00
|
|
|
int ystride;
|
|
|
|
int ustride;
|
|
|
|
int vstride;
|
2003-04-16 07:52:54 +00:00
|
|
|
int width;
|
|
|
|
int height;
|
2008-11-19 00:24:44 +00:00
|
|
|
const struct vts_color_struct_rgb *rgb_colors;
|
|
|
|
const struct vts_color_struct_yuv *yuv_colors;
|
2009-05-26 12:38:43 +00:00
|
|
|
const struct vts_color_struct_gray *gray_colors;
|
2008-11-19 00:24:44 +00:00
|
|
|
const struct vts_color_struct_rgb *rgb_color;
|
|
|
|
const struct vts_color_struct_yuv *yuv_color;
|
2009-05-26 12:38:43 +00:00
|
|
|
const struct vts_color_struct_gray *gray_color;
|
2008-11-19 00:24:44 +00:00
|
|
|
//const struct vts_color_struct *color;
|
2003-04-16 07:52:54 +00:00
|
|
|
void (*paint_hline) (paintinfo * p, int x, int y, int w);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct fourcc_list_struct
|
|
|
|
{
|
2007-05-15 03:53:11 +00:00
|
|
|
int type;
|
2003-04-16 07:52:54 +00:00
|
|
|
char *fourcc;
|
|
|
|
char *name;
|
|
|
|
int bitspp;
|
ext/: ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek) (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain) ext...
Original commit message from CVS:
2005-05-09 Andy Wingo <wingo@pobox.com>
* ext/alsa/gstalsasink.h:
* ext/gnomevfs/gstgnomevfssrc.c:
(gst_gnomevfssrc_get_icy_metadata):
* ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
(gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
* ext/theora/theoradec.c (theora_dec_src_query)
(theora_dec_src_event, theora_dec_sink_event)
(theora_handle_comment_packet, theora_handle_data_packet):
* ext/theora/theoraenc.c (theora_enc_chain):
* ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
(vorbis_dec_sink_event, vorbis_handle_comment_packet):
* gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
* gst/typefind/gsttypefindfunctions.c (mp3_type_find)
(qt_type_find):
* gst/videotestsrc/videotestsrc.c (paint_setup_I420)
(paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
(paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
(paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
(paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
(paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
(paint_setup_xBGR8888, paint_setup_RGBx8888)
(paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
(paint_setup_RGB565, paint_setup_xRGB1555):
* gst/videotestsrc/videotestsrc.h:
* sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
* sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
(gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
GCC4 fixes.
* ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
gst_pad_query_position. Fixes oggdemux.
2005-05-09 07:03:13 +00:00
|
|
|
void (*paint_setup) (paintinfo * p, unsigned char *dest);
|
2003-04-16 07:52:54 +00:00
|
|
|
void (*paint_hline) (paintinfo * p, int x, int y, int w);
|
|
|
|
int depth;
|
|
|
|
unsigned int red_mask;
|
|
|
|
unsigned int green_mask;
|
|
|
|
unsigned int blue_mask;
|
gst/videotestsrc/videotestsrc.*: Add support for AYUV and the various RGBA formats. Initialise fields of paintinfo st...
Original commit message from CVS:
* gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
(paint_get_structure), (gst_video_test_src_get_size),
(gst_video_test_src_smpte), (gst_video_test_src_snow),
(gst_video_test_src_unicolor), (paint_setup_AYUV),
(paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
(paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
* gst/videotestsrc/videotestsrc.h:
Add support for AYUV and the various RGBA formats. Initialise
fields of paintinfo structs allocated on the stack.
* tests/check/elements/videotestsrc.c: (right_shift_colour),
(fix_expected_colour), (check_rgb_buf), (got_buf_cb),
(GST_START_TEST), (videotestsrc_suite):
Add unit tests for videotestsrc's RGB output.
2006-09-02 12:59:48 +00:00
|
|
|
unsigned int alpha_mask;
|
2003-04-16 07:52:54 +00:00
|
|
|
};
|
|
|
|
|
2004-07-22 15:55:33 +00:00
|
|
|
struct fourcc_list_struct *
|
2005-12-06 19:42:02 +00:00
|
|
|
paintrect_find_fourcc (int find_fourcc);
|
2004-07-22 15:55:33 +00:00
|
|
|
struct fourcc_list_struct *
|
2005-12-06 19:42:02 +00:00
|
|
|
paintrect_find_name (const char *name);
|
2004-07-22 15:55:33 +00:00
|
|
|
struct fourcc_list_struct *
|
2005-12-06 19:42:02 +00:00
|
|
|
paintinfo_find_by_structure (const GstStructure *structure);
|
2004-07-22 15:55:33 +00:00
|
|
|
GstStructure *
|
2005-12-06 19:42:02 +00:00
|
|
|
paint_get_structure (struct fourcc_list_struct *format);
|
|
|
|
int gst_video_test_src_get_size (GstVideoTestSrc * v, int w, int h);
|
gst/videotestsrc/: Add more uni-colour patterns ("white", "red", "green", and "blue").
Original commit message from CVS:
* gst/videotestsrc/gstvideotestsrc.c:
(gst_video_test_src_pattern_get_type),
(gst_video_test_src_set_pattern):
* gst/videotestsrc/gstvideotestsrc.h:
* gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
(gst_video_test_src_black), (gst_video_test_src_white),
(gst_video_test_src_red), (gst_video_test_src_green),
(gst_video_test_src_blue):
* gst/videotestsrc/videotestsrc.h:
Add more uni-colour patterns ("white", "red", "green", and "blue").
2006-09-01 16:12:35 +00:00
|
|
|
void gst_video_test_src_smpte (GstVideoTestSrc * v,
|
2005-12-06 19:42:02 +00:00
|
|
|
unsigned char *dest, int w, int h);
|
2008-11-19 00:24:44 +00:00
|
|
|
void gst_video_test_src_smpte75 (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
2005-12-06 19:42:02 +00:00
|
|
|
void gst_video_test_src_snow (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
gst/videotestsrc/: Add more uni-colour patterns ("white", "red", "green", and "blue").
Original commit message from CVS:
* gst/videotestsrc/gstvideotestsrc.c:
(gst_video_test_src_pattern_get_type),
(gst_video_test_src_set_pattern):
* gst/videotestsrc/gstvideotestsrc.h:
* gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
(gst_video_test_src_black), (gst_video_test_src_white),
(gst_video_test_src_red), (gst_video_test_src_green),
(gst_video_test_src_blue):
* gst/videotestsrc/videotestsrc.h:
Add more uni-colour patterns ("white", "red", "green", and "blue").
2006-09-01 16:12:35 +00:00
|
|
|
void gst_video_test_src_black (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
|
|
|
void gst_video_test_src_white (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
|
|
|
void gst_video_test_src_red (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
|
|
|
void gst_video_test_src_green (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
|
|
|
void gst_video_test_src_blue (GstVideoTestSrc * v,
|
2005-12-06 19:42:02 +00:00
|
|
|
unsigned char *dest, int w, int h);
|
2006-10-23 12:46:41 +00:00
|
|
|
void gst_video_test_src_checkers1 (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
|
|
|
void gst_video_test_src_checkers2 (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
|
|
|
void gst_video_test_src_checkers4 (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
|
|
|
void gst_video_test_src_checkers8 (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
2007-04-04 02:45:03 +00:00
|
|
|
void gst_video_test_src_circular (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
2008-11-21 20:32:56 +00:00
|
|
|
void gst_video_test_src_zoneplate (GstVideoTestSrc * v,
|
|
|
|
unsigned char *dest, int w, int h);
|
2003-04-16 07:52:54 +00:00
|
|
|
extern struct fourcc_list_struct fourcc_list[];
|
|
|
|
extern int n_fourccs;
|
|
|
|
|
|
|
|
#endif
|