search for: argb_image

Displaying 2 results from an estimated 2 matches for "argb_image".

2007 Dec 10
0
5 commits - libswfdec/jpeg libswfdec/swfdec_as_interpret.c libswfdec/swfdec_bits.c libswfdec/swfdec_cached.c libswfdec/swfdec_codec_adpcm.c libswfdec/swfdec_codec_audio.c libswfdec/swfdec_flash_security.c libswfdec/swfdec_image.c
....6c0ba41 100644 --- a/libswfdec/jpeg/jpeg.h +++ b/libswfdec/jpeg/jpeg.h @@ -155,7 +155,7 @@ int jpeg_decoder_get_component_subsampling(JpegDecoder *dec, int id, int jpeg_decoder_get_component_ptr(JpegDecoder *dec, int id, unsigned char **image, int *rowstride); -unsigned char *jpeg_decoder_get_argb_image (JpegDecoder *dec); +uint32_t *jpeg_decoder_get_argb_image (JpegDecoder *dec); int jpeg_decode_argb (uint8_t *data, int length, uint32_t **image, int *width, int *height); diff --git a/libswfdec/jpeg/jpeg_rgb_decoder.c b/libswfdec/jpeg/jpeg_rgb_decoder.c index 6fc49c8..3c01914 100644 --- a/...
2007 Feb 13
0
libswfdec/jpeg libswfdec/swfdec_image.c
...egDecoder *dec, int id, + int *width, int *height); +int jpeg_decoder_get_component_subsampling(JpegDecoder *dec, int id, + int *h_subsample, int *v_subsample); +int jpeg_decoder_get_component_ptr(JpegDecoder *dec, int id, + unsigned char **image, int *rowstride); + +unsigned char *jpeg_decoder_get_argb_image (JpegDecoder *dec); #endif + diff --git a/libswfdec/jpeg/jpeg_debug.h b/libswfdec/jpeg/jpeg_debug.h index 6bd5732..921a74b 100644 --- a/libswfdec/jpeg/jpeg_debug.h +++ b/libswfdec/jpeg/jpeg_debug.h @@ -2,27 +2,12 @@ #ifndef _JPEG_DEBUG_H_ #define _JPEG_DEBUG_H_ -#include <libswfdec/swfd...