build: fprintf, sprintf, sscanf need stdio.h
[platform/upstream/gstreamer.git] / ext / jpeg / gstjpegdec.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
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.
8  *
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.
13  *
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.
18  */
19
20
21 #ifndef __GST_JPEG_DEC_H__
22 #define __GST_JPEG_DEC_H__
23
24
25 #include <setjmp.h>
26 #include <gst/gst.h>
27
28 /* this is a hack hack hack to get around jpeglib header bugs... */
29 #ifdef HAVE_STDLIB_H
30 # undef HAVE_STDLIB_H
31 #endif
32 #include <stdio.h>
33 #include <jpeglib.h>
34
35 G_BEGIN_DECLS
36
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))
47
48 typedef struct _GstJpegDec           GstJpegDec;
49 typedef struct _GstJpegDecClass      GstJpegDecClass;
50
51 struct GstJpegDecErrorMgr {
52   struct jpeg_error_mgr    pub;   /* public fields */
53   jmp_buf                  setjmp_buffer;
54 };
55
56 struct GstJpegDecSourceMgr {
57   struct jpeg_source_mgr   pub;   /* public fields */
58   GstJpegDec              *dec;
59 };
60
61 #define CINFO_GET_JPEGDEC(cinfo_ptr) \
62         (((struct GstJpegDecSourceMgr*)((cinfo_ptr)->src))->dec)
63
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 */
67 struct _GstJpegDec {
68   GstElement element;
69
70   /* pads */
71   GstPad  *sinkpad;
72   GstPad  *srcpad;
73
74   GstBuffer *tempbuf;
75
76   /* TRUE if each input buffer contains a whole jpeg image */
77   gboolean packetized;
78
79   /* the (expected) timestamp of the next frame */
80   guint64  next_ts;
81
82   GstSegment segment;
83
84   /* TRUE if the next output buffer should have the DISCONT flag set */
85   gboolean discont;
86
87   /* QoS stuff *//* with LOCK */
88   gdouble proportion;
89   GstClockTime earliest_time;
90   GstClockTime qos_duration;
91
92   /* video state */
93   gint framerate_numerator;
94   gint framerate_denominator;
95
96   /* negotiated state */
97   gint     caps_framerate_numerator;
98   gint     caps_framerate_denominator;
99   gint     caps_width;
100   gint     caps_height;
101   gint     outsize;
102   /* temp space for samples */
103   gboolean direct;
104   guchar **scanarray[3];
105
106   /* properties */
107   gint     idct_method;
108
109   struct jpeg_decompress_struct cinfo;
110   struct GstJpegDecErrorMgr     jerr;
111   struct GstJpegDecSourceMgr    jsrc;
112 };
113
114 struct _GstJpegDecClass {
115   GstElementClass  parent_class;
116 };
117
118 GType gst_jpeg_dec_get_type(void);
119
120
121 G_END_DECLS
122
123
124 #endif /* __GST_JPEG_DEC_H__ */