2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 #ifndef __GST_JPEG_DEC_H__
22 #define __GST_JPEG_DEC_H__
28 /* this is a hack hack hack to get around jpeglib header bugs... */
37 #define GST_TYPE_JPEG_DEC \
38 (gst_jpeg_dec_get_type())
39 #define GST_JPEG_DEC(obj) \
40 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_JPEG_DEC,GstJpegDec))
41 #define GST_JPEG_DEC_CLASS(klass) \
42 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_JPEG_DEC,GstJpegDecClass))
43 #define GST_IS_JPEG_DEC(obj) \
44 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_JPEG_DEC))
45 #define GST_IS_JPEG_DEC_CLASS(klass) \
46 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_JPEG_DEC))
48 typedef struct _GstJpegDec GstJpegDec;
49 typedef struct _GstJpegDecClass GstJpegDecClass;
51 struct GstJpegDecErrorMgr {
52 struct jpeg_error_mgr pub; /* public fields */
53 jmp_buf setjmp_buffer;
56 struct GstJpegDecSourceMgr {
57 struct jpeg_source_mgr pub; /* public fields */
61 #define CINFO_GET_JPEGDEC(cinfo_ptr) \
62 (((struct GstJpegDecSourceMgr*)((cinfo_ptr)->src))->dec)
64 /* Can't use GstBaseTransform, because GstBaseTransform
65 * doesn't handle the N buffers in, 1 buffer out case,
66 * but only the 1-in 1-out case */
76 /* TRUE if each input buffer contains a whole jpeg image */
79 /* the (expected) timestamp of the next frame */
84 /* TRUE if the next output buffer should have the DISCONT flag set */
87 /* QoS stuff *//* with LOCK */
89 GstClockTime earliest_time;
90 GstClockTime qos_duration;
93 gint framerate_numerator;
94 gint framerate_denominator;
96 /* negotiated state */
97 gint caps_framerate_numerator;
98 gint caps_framerate_denominator;
102 /* temp space for samples */
104 guchar **scanarray[3];
109 struct jpeg_decompress_struct cinfo;
110 struct GstJpegDecErrorMgr jerr;
111 struct GstJpegDecSourceMgr jsrc;
114 struct _GstJpegDecClass {
115 GstElementClass parent_class;
118 GType gst_jpeg_dec_get_type(void);
124 #endif /* __GST_JPEG_DEC_H__ */