]> git.sesse.net Git - vlc/blob - modules/codec/sdl_image.c
Merge branch 1.0-bugfix
[vlc] / modules / codec / sdl_image.c
1 /*****************************************************************************
2  * sdl_image.c: sdl decoder module making use of libsdl_image.
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_plugin.h>
33 #include <vlc_codec.h>
34
35 #include SDL_IMAGE_INCLUDE_FILE
36
37 /*****************************************************************************
38  * decoder_sys_t : sdl decoder descriptor
39  *****************************************************************************/
40 struct decoder_sys_t
41 {
42     const char *psz_sdl_type;
43 };
44
45 /*****************************************************************************
46  * Local prototypes
47  *****************************************************************************/
48 static int  OpenDecoder   ( vlc_object_t * );
49 static void CloseDecoder  ( vlc_object_t * );
50
51 static picture_t *DecodeBlock  ( decoder_t *, block_t ** );
52
53 /*****************************************************************************
54  * Module descriptor
55  *****************************************************************************/
56 vlc_module_begin ()
57     set_category( CAT_INPUT )
58     set_subcategory( SUBCAT_INPUT_VCODEC )
59     set_shortname( N_("SDL Image decoder"))
60     set_description( N_("SDL_image video decoder") )
61     set_capability( "decoder", 60 )
62     set_callbacks( OpenDecoder, CloseDecoder )
63     add_shortcut( "sdl_image" )
64 vlc_module_end ()
65
66 static const struct supported_fmt_t
67 {
68     vlc_fourcc_t i_fourcc;
69     const char *psz_sdl_type;
70 } p_supported_fmt[] =
71 {
72     { VLC_CODEC_TARGA, "TGA" },
73     { VLC_CODEC_BMP, "BMP" },
74     { VLC_CODEC_PNM, "PNM" },
75     { VLC_FOURCC('x','p','m',' '), "XPM" },
76     { VLC_FOURCC('x','c','f',' '), "XCF" },
77     { VLC_CODEC_PCX, "PCX" },
78     { VLC_CODEC_GIF, "GIF" },
79     { VLC_CODEC_JPEG, "JPG" },
80     { VLC_CODEC_TIFF, "TIF" },
81     { VLC_FOURCC('l','b','m',' '), "LBM" },
82     { VLC_CODEC_PNG, "PNG" }
83 };
84
85 /*****************************************************************************
86  * OpenDecoder: probe the decoder and return score
87  *****************************************************************************/
88 static int OpenDecoder( vlc_object_t *p_this )
89 {
90     decoder_t *p_dec = (decoder_t *)p_this;
91     decoder_sys_t *p_sys;
92     int i;
93
94     /* Find codec. */
95     for ( i = 0;
96           i < (int)(sizeof(p_supported_fmt)/sizeof(struct supported_fmt_t));
97           i++ )
98     {
99         if ( p_supported_fmt[i].i_fourcc == p_dec->fmt_in.i_codec )
100             break;
101     }
102     if ( i == (int)(sizeof(p_supported_fmt)/sizeof(struct supported_fmt_t)) )
103     {
104         return VLC_EGENERIC;
105     }
106
107     /* Allocate the memory needed to store the decoder's structure */
108     if( ( p_dec->p_sys = p_sys =
109           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
110         return VLC_ENOMEM;
111     p_sys->psz_sdl_type = p_supported_fmt[i].psz_sdl_type;
112
113     /* Set output properties - this is a decoy and isn't used anywhere */
114     p_dec->fmt_out.i_cat = VIDEO_ES;
115     p_dec->fmt_out.i_codec = VLC_CODEC_RGB32;
116
117     /* Set callbacks */
118     p_dec->pf_decode_video = DecodeBlock;
119
120     return VLC_SUCCESS;
121 }
122
123 /****************************************************************************
124  * DecodeBlock: the whole thing
125  ****************************************************************************
126  * This function must be fed with a complete compressed frame.
127  ****************************************************************************/
128 static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
129 {
130     decoder_sys_t *p_sys = p_dec->p_sys;
131     block_t *p_block;
132     picture_t *p_pic = NULL;
133     SDL_Surface *p_surface;
134     SDL_RWops *p_rw;
135
136     if( pp_block == NULL || *pp_block == NULL ) return NULL;
137     p_block = *pp_block;
138
139     if( p_block->i_flags & BLOCK_FLAG_DISCONTINUITY )
140     {
141         block_Release( p_block ); *pp_block = NULL;
142         return NULL;
143     }
144
145     p_rw = SDL_RWFromConstMem( p_block->p_buffer, p_block->i_buffer );
146
147     /* Decode picture. */
148     p_surface = IMG_LoadTyped_RW( p_rw, 1, (char*)p_sys->psz_sdl_type );
149     if ( p_surface == NULL )
150     {
151         msg_Warn( p_dec, "SDL_image couldn't load the image (%s)",
152                   IMG_GetError() );
153         goto error;
154     }
155
156     switch ( p_surface->format->BitsPerPixel )
157     {
158     case 16:
159         p_dec->fmt_out.i_codec = VLC_CODEC_RGB16;
160         break;
161     case 8:
162     case 24:
163         p_dec->fmt_out.i_codec = VLC_CODEC_RGB24;
164         break;
165     case 32:
166         p_dec->fmt_out.i_codec = VLC_CODEC_RGB32;
167         break;
168     default:
169         msg_Warn( p_dec, "unknown bits/pixel format (%d)",
170                   p_surface->format->BitsPerPixel );
171         goto error;
172     }
173     p_dec->fmt_out.video.i_width = p_surface->w;
174     p_dec->fmt_out.video.i_height = p_surface->h;
175     p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR * p_surface->w
176                                      / p_surface->h;
177
178     /* Get a new picture. */
179     p_pic = decoder_NewPicture( p_dec );
180     if ( p_pic == NULL ) goto error;
181
182     switch ( p_surface->format->BitsPerPixel )
183     {
184         case 8:
185         {
186             int i, j;
187             uint8_t *p_src, *p_dst;
188             uint8_t r, g, b;
189             for ( i = 0; i < p_surface->h; i++ )
190             {
191                 p_src = (uint8_t*)p_surface->pixels + i * p_surface->pitch;
192                 p_dst = p_pic->p[0].p_pixels + i * p_pic->p[0].i_pitch;
193                 for ( j = 0; j < p_surface->w; j++ )
194                 {
195                     SDL_GetRGB( *(p_src++), p_surface->format,
196                                 &r, &g, &b );
197                     *(p_dst++) = r;
198                     *(p_dst++) = g;
199                     *(p_dst++) = b;
200                 }
201             }
202             break;
203         }
204         case 16:
205         {
206             int i;
207             uint8_t *p_src = p_surface->pixels;
208             uint8_t *p_dst = p_pic->p[0].p_pixels;
209             int i_pitch = p_pic->p[0].i_pitch < p_surface->pitch ?
210                 p_pic->p[0].i_pitch : p_surface->pitch;
211
212             for ( i = 0; i < p_surface->h; i++ )
213             {
214                 vlc_memcpy( p_dst, p_src, i_pitch );
215                 p_src += p_surface->pitch;
216                 p_dst += p_pic->p[0].i_pitch;
217             }
218             break;
219         }
220         case 24:
221         {
222             int i, j;
223             uint8_t *p_src, *p_dst;
224             uint8_t r, g, b;
225             for ( i = 0; i < p_surface->h; i++ )
226             {
227                 p_src = (uint8_t*)p_surface->pixels + i * p_surface->pitch;
228                 p_dst = p_pic->p[0].p_pixels + i * p_pic->p[0].i_pitch;
229                 for ( j = 0; j < p_surface->w; j++ )
230                 {
231                     SDL_GetRGB( *(uint32_t*)p_src, p_surface->format,
232                                 &r, &g, &b );
233                     *(p_dst++) = r;
234                     *(p_dst++) = g;
235                     *(p_dst++) = b;
236                     p_src += 3;
237                 }
238             }
239             break;
240         }
241         case 32:
242         {
243             int i, j;
244             uint8_t *p_src, *p_dst;
245             uint8_t r, g, b, a;
246             for ( i = 0; i < p_surface->h; i++ )
247             {
248                 p_src = (uint8_t*)p_surface->pixels + i * p_surface->pitch;
249                 p_dst = p_pic->p[0].p_pixels + i * p_pic->p[0].i_pitch;
250                 for ( j = 0; j < p_surface->w; j++ )
251                 {
252                     SDL_GetRGBA( *(uint32_t*)p_src, p_surface->format,
253                                 &r, &g, &b, &a );
254                     *(p_dst++) = b;
255                     *(p_dst++) = g;
256                     *(p_dst++) = r;
257                     *(p_dst++) = a;
258                     p_src += 4;
259                 }
260             }
261             break;
262         }
263     }
264
265     p_pic->date = p_block->i_pts > 0 ? p_block->i_pts : p_block->i_dts;
266
267     SDL_FreeSurface( p_surface );
268     block_Release( p_block ); *pp_block = NULL;
269     return p_pic;
270
271 error:
272     if ( p_surface != NULL ) SDL_FreeSurface( p_surface );
273     block_Release( p_block ); *pp_block = NULL;
274     return NULL;
275 }
276
277 /*****************************************************************************
278  * CloseDecoder: sdl decoder destruction
279  *****************************************************************************/
280 static void CloseDecoder( vlc_object_t *p_this )
281 {
282     decoder_t *p_dec = (decoder_t *)p_this;
283     decoder_sys_t *p_sys = p_dec->p_sys;
284
285     free( p_sys );
286 }