summaryrefslogtreecommitdiff
path: root/swfdec/swfdec_video_decoder.h
blob: 21248fabffe516eefddd96efebd2bb6dee9f2f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* Swfdec
 * Copyright (C) 2006-2008 Benjamin Otte <otte@gnome.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 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
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, 
 * Boston, MA  02110-1301  USA
 */

#ifndef _SWFDEC_VIDEO_DECODER_H_
#define _SWFDEC_VIDEO_DECODER_H_

#include <swfdec/swfdec_buffer.h>
#include <swfdec/swfdec_renderer.h>

G_BEGIN_DECLS


#define SWFDEC_VIDEO_CODEC_UNDEFINED 0
#define SWFDEC_VIDEO_CODEC_H263 2
#define SWFDEC_VIDEO_CODEC_SCREEN 3
#define SWFDEC_VIDEO_CODEC_VP6 4
#define SWFDEC_VIDEO_CODEC_VP6_ALPHA 5
#define SWFDEC_VIDEO_CODEC_SCREEN2 6
#define SWFDEC_VIDEO_CODEC_H264 7

typedef enum {
  SWFDEC_VIDEO_FORMAT_RGBA,
  SWFDEC_VIDEO_FORMAT_I420
} SwfdecVideoFormat;


typedef struct _SwfdecVideoDecoder SwfdecVideoDecoder;
typedef struct _SwfdecVideoDecoderClass SwfdecVideoDecoderClass;

#define SWFDEC_TYPE_VIDEO_DECODER                    (swfdec_video_decoder_get_type())
#define SWFDEC_IS_VIDEO_DECODER(obj)                 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SWFDEC_TYPE_VIDEO_DECODER))
#define SWFDEC_IS_VIDEO_DECODER_CLASS(klass)         (G_TYPE_CHECK_CLASS_TYPE ((klass), SWFDEC_TYPE_VIDEO_DECODER))
#define SWFDEC_VIDEO_DECODER(obj)                    (G_TYPE_CHECK_INSTANCE_CAST ((obj), SWFDEC_TYPE_VIDEO_DECODER, SwfdecVideoDecoder))
#define SWFDEC_VIDEO_DECODER_CLASS(klass)            (G_TYPE_CHECK_CLASS_CAST ((klass), SWFDEC_TYPE_VIDEO_DECODER, SwfdecVideoDecoderClass))
#define SWFDEC_VIDEO_DECODER_GET_CLASS(obj)          (G_TYPE_INSTANCE_GET_CLASS ((obj), SWFDEC_TYPE_VIDEO_DECODER, SwfdecVideoDecoderClass))

struct _SwfdecVideoDecoder
{
  GObject		object;

  /*< protected >*/
  guint			width;		/* width of the current image */
  guint			height;		/* height of the current image */
  guint8 *		plane[3];	/* planes of the image, not all might be used */
  guint		  	rowstride[3];	/* rowstrides of the planes */
  guint8 *		mask;		/* A8 mask or NULL if none */
  guint			mask_rowstride;	/* rowstride of mask plane */
  /*< private >*/
  guint			codec;		/* codec this decoder uses */
  gboolean		error;		/* if this codec is in an error state */
};

struct _SwfdecVideoDecoderClass
{
  /*< private >*/
  GObjectClass		object_class;

  /*< public >*/
  gboolean		(* prepare)	(guint                  codec,
					 char **                missing);
  SwfdecVideoDecoder *	(* create)	(guint                  codec);

  void			(* set_codec_data)
					(SwfdecVideoDecoder *	decoder,
					 SwfdecBuffer *		buffer);
  void			(* decode)	(SwfdecVideoDecoder *	decoder,
					 SwfdecBuffer *		buffer);
};

SwfdecVideoFormat     	swfdec_video_codec_get_format	(guint			codec);

GType			swfdec_video_decoder_get_type	(void);

void			swfdec_video_decoder_register	(GType			type);

gboolean		swfdec_video_decoder_prepare	(guint			codec,
							 char **		missing);

SwfdecVideoDecoder *   	swfdec_video_decoder_new      	(guint			codec);

void			swfdec_video_decoder_set_codec_data
							(SwfdecVideoDecoder *	decoder,
							 SwfdecBuffer *		buffer);
void			swfdec_video_decoder_decode	(SwfdecVideoDecoder *	decoder,
							 SwfdecBuffer *		buffer);
guint			swfdec_video_decoder_get_codec	(SwfdecVideoDecoder *	decoder);
guint			swfdec_video_decoder_get_width	(SwfdecVideoDecoder *	decoder);
guint			swfdec_video_decoder_get_height	(SwfdecVideoDecoder *	decoder);
cairo_surface_t *	swfdec_video_decoder_get_image	(SwfdecVideoDecoder *	decoder,
							 SwfdecRenderer *	renderer);
gboolean		swfdec_video_decoder_get_error	(SwfdecVideoDecoder *   decoder);

/* for subclasses */
void			swfdec_video_decoder_error	(SwfdecVideoDecoder *	decoder,
							 const char *		error,
							 ...) G_GNUC_PRINTF (2, 3);
void			swfdec_video_decoder_errorv	(SwfdecVideoDecoder *	decoder,
							 const char *		error,
							 va_list		args);



G_END_DECLS
#endif