2003-09-13 01:22:59 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wim.taymans@chello.be>
|
|
|
|
*
|
|
|
|
* gstosselement.h:
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_OSS_ELEMENT_H__
|
|
|
|
#define __GST_OSS_ELEMENT_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2004-04-20 23:03:28 +00:00
|
|
|
#include <sys/types.h>
|
2003-09-13 01:22:59 +00:00
|
|
|
|
2004-02-25 17:40:32 +00:00
|
|
|
/* debugging category */
|
2004-01-12 12:07:28 +00:00
|
|
|
GST_DEBUG_CATEGORY_EXTERN (oss_debug);
|
|
|
|
#define GST_CAT_DEFAULT oss_debug
|
|
|
|
|
2003-09-13 01:22:59 +00:00
|
|
|
G_BEGIN_DECLS
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2003-09-13 01:22:59 +00:00
|
|
|
#define GST_TYPE_OSSELEMENT \
|
|
|
|
(gst_osselement_get_type())
|
|
|
|
#define GST_OSSELEMENT(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_OSSELEMENT,GstOssElement))
|
|
|
|
#define GST_OSSELEMENT_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_OSSELEMENT,GstOssElementClass))
|
|
|
|
#define GST_IS_OSSELEMENT(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_OSSELEMENT))
|
|
|
|
#define GST_IS_OSSELEMENT_CLASS(obj) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_OSSELEMENT))
|
2003-11-06 09:55:24 +00:00
|
|
|
#define GST_OSSELEMENT_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_OSSELEMENT, GstOssElementClass))
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2003-09-13 01:22:59 +00:00
|
|
|
typedef struct _GstOssElement GstOssElement;
|
|
|
|
typedef struct _GstOssElementClass GstOssElementClass;
|
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
typedef enum {
|
2003-09-13 01:22:59 +00:00
|
|
|
GST_OSSELEMENT_READ,
|
|
|
|
GST_OSSELEMENT_WRITE,
|
|
|
|
} GstOssOpenMode;
|
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
typedef struct _GstOssDeviceCombination {
|
2003-11-06 09:55:24 +00:00
|
|
|
gchar *dsp, *mixer;
|
2004-02-29 10:43:03 +00:00
|
|
|
dev_t dev;
|
2003-11-06 09:55:24 +00:00
|
|
|
} GstOssDeviceCombination;
|
|
|
|
|
2003-09-13 01:22:59 +00:00
|
|
|
struct _GstOssElement
|
|
|
|
{
|
|
|
|
/* yes, we're a gstelement too */
|
2004-03-15 16:32:54 +00:00
|
|
|
GstElement parent;
|
2003-09-13 01:22:59 +00:00
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
gchar *device,
|
|
|
|
*mixer_dev;
|
2003-09-13 01:22:59 +00:00
|
|
|
|
|
|
|
/* device state */
|
2004-03-15 16:32:54 +00:00
|
|
|
int fd;
|
|
|
|
int caps; /* the capabilities */
|
|
|
|
gint format;
|
|
|
|
gint fragment;
|
|
|
|
guint64 fragment_time;
|
|
|
|
gint fragment_size;
|
2003-09-13 01:22:59 +00:00
|
|
|
GstOssOpenMode mode;
|
sys/oss/gstosselement.c: Add code to handle rate probing (bug #120883)
Original commit message from CVS:
* sys/oss/gstosselement.c: (gst_osselement_sync_parms),
(gst_osselement_close_audio), (gst_osselement_probe_caps),
(gst_osselement_get_format_structure),
(gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
(gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
(gst_osselement_rate_int_compare): Add code to handle rate probing
(bug #120883)
* sys/oss/gstosselement.h: same
* sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
Use rate probing provided by osselement.
* sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
2004-03-25 02:43:48 +00:00
|
|
|
GstCaps *probed_caps;
|
2003-09-13 01:22:59 +00:00
|
|
|
|
configure.ac: Improve mpeg2enc detection. This is for distributions that do ship mjpegtools, but without mpeg2enc. Al...
Original commit message from CVS:
2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
* configure.ac:
Improve mpeg2enc detection. This is for distributions that do
ship mjpegtools, but without mpeg2enc. Also does object check
for might there ever be ABI incompatibility.
* ext/mpeg2enc/gstmpeg2enc.cc:
Add Andrew as second maintainer (he's helping me), and also add
an error if no caps was set. This happens if I pull before capsnego
and that's something I should solve sometime else.
* gst/matroska/matroska-demux.c:
(gst_matroska_demux_parse_blockgroup):
Fix time parsing.
* gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
(gst_matroska_mux_track_header):
Add caps to templates.
* gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
Add mpegversion=1 to prevent confusion with MPEG/AAC.
* gst/mpegstream/gstmpegdemux.c:
Remove layer since it causes warnings about unfixed caps.
* gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
Fix obvious typo (we error out if caps were set, we should of
course error out if *no* caps were set).
* sys/oss/gstosselement.c: (gst_osselement_convert):
Fix format conversion, we confused bits/bytes.
* sys/oss/gstosselement.h:
Improve documentation for 'bps'.
* sys/v4l/TODO:
Remove stuff about plugins that need removing - this was done
ages ago.
* sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
(gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
(gst_v4lsrc_src_query):
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
(gst_v4l2src_src_convert), (gst_v4l2src_src_query):
Add get_query_types(), get_formats() and query() functions.
2003-12-21 18:44:34 +00:00
|
|
|
/* stats bytes per *second* */
|
2004-03-15 16:32:54 +00:00
|
|
|
guint bps;
|
2003-09-13 01:22:59 +00:00
|
|
|
|
2004-07-07 16:11:39 +00:00
|
|
|
/* sample width in bytes */
|
|
|
|
guint sample_width;
|
|
|
|
|
2003-09-13 01:22:59 +00:00
|
|
|
/* parameters */
|
2004-03-15 16:32:54 +00:00
|
|
|
gint law;
|
|
|
|
gint endianness;
|
|
|
|
gboolean sign;
|
|
|
|
gint width;
|
|
|
|
gint depth;
|
|
|
|
gint channels;
|
|
|
|
gint rate;
|
2003-09-13 01:22:59 +00:00
|
|
|
|
|
|
|
/* mixer stuff */
|
2004-03-15 16:32:54 +00:00
|
|
|
GList *tracklist;
|
|
|
|
guint32 stereomask,
|
|
|
|
recdevs,
|
|
|
|
recmask,
|
|
|
|
mixcaps;
|
|
|
|
gint mixer_fd;
|
|
|
|
gchar *device_name;
|
2003-09-13 01:22:59 +00:00
|
|
|
};
|
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
struct _GstOssElementClass {
|
2003-09-13 01:22:59 +00:00
|
|
|
GstElementClass klass;
|
2003-11-06 09:55:24 +00:00
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
GList *device_combinations;
|
2003-09-13 01:22:59 +00:00
|
|
|
};
|
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
GType gst_osselement_get_type (void);
|
2003-09-13 01:22:59 +00:00
|
|
|
|
|
|
|
/* some useful functions */
|
2004-03-15 16:32:54 +00:00
|
|
|
gboolean gst_osselement_parse_caps (GstOssElement *oss,
|
|
|
|
const GstCaps *caps);
|
|
|
|
gboolean gst_osselement_merge_fixed_caps (GstOssElement *oss,
|
|
|
|
GstCaps *caps);
|
|
|
|
|
|
|
|
gboolean gst_osselement_sync_parms (GstOssElement *oss);
|
|
|
|
void gst_osselement_reset (GstOssElement *oss);
|
|
|
|
|
|
|
|
gboolean gst_osselement_convert (GstOssElement *oss,
|
|
|
|
GstFormat src_format,
|
|
|
|
gint64 src_value,
|
|
|
|
GstFormat *dest_format,
|
|
|
|
gint64 *dest_value);
|
sys/oss/gstosselement.c: Add code to handle rate probing (bug #120883)
Original commit message from CVS:
* sys/oss/gstosselement.c: (gst_osselement_sync_parms),
(gst_osselement_close_audio), (gst_osselement_probe_caps),
(gst_osselement_get_format_structure),
(gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
(gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
(gst_osselement_rate_int_compare): Add code to handle rate probing
(bug #120883)
* sys/oss/gstosselement.h: same
* sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
Use rate probing provided by osselement.
* sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
2004-03-25 02:43:48 +00:00
|
|
|
void gst_osselement_probe_caps (GstOssElement *oss);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2003-09-13 01:22:59 +00:00
|
|
|
#endif /* __GST_OSS_ELEMENT_H__ */
|