Mercurial > mplayer.hg
annotate libvo/vo_png.c @ 7953:60624e692b95
GCC warning fixes
author | bertrand |
---|---|
date | Tue, 29 Oct 2002 09:18:53 +0000 |
parents | 7d2542838d24 |
children | 5b39e79af5fe |
rev | line source |
---|---|
527 | 1 /* |
530 | 2 * vo_png.c, Portable Network Graphics Renderer for Mplayer |
527 | 3 * |
530 | 4 * Copyright 2001 by Felix Buenemann <atmosfear@users.sourceforge.net> |
527 | 5 * |
530 | 6 * Uses libpng (which uses zlib), so see according licenses. |
527 | 7 * |
8 */ | |
9 | |
10 #include <stdio.h> | |
11 #include <stdlib.h> | |
12 #include <string.h> | |
612 | 13 #include <errno.h> |
527 | 14 |
15 #include <png.h> | |
16 | |
17 #include "config.h" | |
18 #include "video_out.h" | |
19 #include "video_out_internal.h" | |
20 | |
21 LIBVO_EXTERN (png) | |
22 | |
23 static vo_info_t vo_info = | |
24 { | |
25 "PNG file", | |
26 "png", | |
27 "Felix Buenemann <atmosfear@users.sourceforge.net>", | |
28 "" | |
29 }; | |
30 | |
31 extern int verbose; | |
32 int z_compression = Z_NO_COMPRESSION; | |
33 static int framenum = 0; | |
34 | |
35 struct pngdata { | |
36 FILE * fp; | |
37 png_structp png_ptr; | |
38 png_infop info_ptr; | |
39 enum {OK,ERROR} status; | |
40 }; | |
3950
e92653caf5d7
osd support, zlib range fix. by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
2732
diff
changeset
|
41 |
527 | 42 static uint32_t |
7124
eca7dbad0166
finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
alex
parents:
6132
diff
changeset
|
43 config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format) |
527 | 44 { |
45 | |
3950
e92653caf5d7
osd support, zlib range fix. by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
2732
diff
changeset
|
46 if((z_compression >= 0) && (z_compression <= 9)) { |
527 | 47 if(z_compression == 0) { |
48 printf("PNG Warning: compression level set to 0, compression disabled!\n"); | |
49 printf("PNG Info: Use the -z <n> switch to set compression level from 0 to 9.\n"); | |
50 printf("PNG Info: (0 = no compression, 1 = fastest, lowest - 9 best, slowest compression)\n"); | |
51 } | |
52 } | |
53 else { | |
54 printf("PNG Warning: compression level out of range setting to 1!\n"); | |
55 printf("PNG Info: Use the -z <n> switch to set compression level from 0 to 9.\n"); | |
56 printf("PNG Info: (0 = no compression, 1 = fastest, lowest - 9 best, slowest compression)\n"); | |
57 z_compression = Z_BEST_SPEED; | |
58 } | |
59 | |
60 if(verbose) printf("PNG Compression level %i\n", z_compression); | |
61 | |
62 return 0; | |
63 } | |
64 | |
65 static const vo_info_t* | |
66 get_info(void) | |
67 { | |
68 return &vo_info; | |
69 } | |
70 | |
71 | |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
72 struct pngdata create_png (char * fname, int image_width, int image_height, int swapped) |
527 | 73 { |
74 struct pngdata png; | |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
75 |
527 | 76 /*png_structp png_ptr = png_create_write_struct |
77 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr, | |
78 user_error_fn, user_warning_fn);*/ | |
79 //png_byte *row_pointers[image_height]; | |
80 png.png_ptr = png_create_write_struct | |
81 (PNG_LIBPNG_VER_STRING, NULL, | |
82 NULL, NULL); | |
83 png.info_ptr = png_create_info_struct(png.png_ptr); | |
84 | |
85 if (!png.png_ptr) { | |
86 if(verbose > 1) printf("PNG Failed to init png pointer\n"); | |
87 png.status = ERROR; | |
88 return png; | |
89 } | |
90 | |
91 if (!png.info_ptr) { | |
92 if(verbose > 1) printf("PNG Failed to init png infopointer\n"); | |
93 png_destroy_write_struct(&png.png_ptr, | |
94 (png_infopp)NULL); | |
95 png.status = ERROR; | |
96 return png; | |
97 } | |
98 | |
99 if (setjmp(png.png_ptr->jmpbuf)) { | |
100 if(verbose > 1) printf("PNG Internal error!\n"); | |
101 png_destroy_write_struct(&png.png_ptr, &png.info_ptr); | |
102 fclose(png.fp); | |
103 png.status = ERROR; | |
104 return png; | |
105 } | |
106 | |
107 png.fp = fopen (fname, "wb"); | |
108 if (png.fp == NULL) { | |
612 | 109 printf("\nPNG Error opening %s for writing!\n", strerror(errno)); |
527 | 110 png.status = ERROR; |
111 return png; | |
112 } | |
113 | |
114 if(verbose > 1) printf("PNG Init IO\n"); | |
115 png_init_io(png.png_ptr, png.fp); | |
116 | |
117 /* set the zlib compression level */ | |
118 png_set_compression_level(png.png_ptr, z_compression); | |
119 | |
120 | |
121 /*png_set_IHDR(png_ptr, info_ptr, width, height, | |
122 bit_depth, color_type, interlace_type, | |
123 compression_type, filter_type)*/ | |
124 png_set_IHDR(png.png_ptr, png.info_ptr, image_width, image_height, | |
125 8, PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE, | |
126 PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT); | |
127 | |
128 if(verbose > 1) printf("PNG Write Info\n"); | |
129 png_write_info(png.png_ptr, png.info_ptr); | |
130 | |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
131 if(swapped) { |
527 | 132 if(verbose > 1) printf("PNG Set BGR Conversion\n"); |
133 png_set_bgr(png.png_ptr); | |
134 } | |
135 | |
136 png.status = OK; | |
137 return png; | |
138 } | |
139 | |
140 static uint8_t destroy_png(struct pngdata png) { | |
141 | |
142 if(verbose > 1) printf("PNG Write End\n"); | |
143 png_write_end(png.png_ptr, png.info_ptr); | |
144 | |
145 if(verbose > 1) printf("PNG Destroy Write Struct\n"); | |
146 png_destroy_write_struct(&png.png_ptr, &png.info_ptr); | |
147 | |
148 fclose (png.fp); | |
149 | |
150 return 0; | |
151 } | |
152 | |
7693 | 153 static uint32_t draw_image(mp_image_t* mpi){ |
527 | 154 char buf[100]; |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
155 int k; |
527 | 156 struct pngdata png; |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
157 png_byte *row_pointers[mpi->h]; |
7693 | 158 |
159 // if -dr or -slices then do nothing: | |
160 if(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK)) return VO_TRUE; | |
527 | 161 |
1078 | 162 snprintf (buf, 100, "%08d.png", ++framenum); |
527 | 163 |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
164 png = create_png(buf, mpi->w, mpi->h, mpi->flags&MP_IMGFLAG_SWAPPED); |
527 | 165 |
166 if(png.status){ | |
167 printf("PNG Error in create_png\n"); | |
168 return 1; | |
169 } | |
170 | |
171 if(verbose > 1) printf("PNG Creating Row Pointers\n"); | |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
172 for ( k = 0; k < mpi->h; k++ ) |
7693 | 173 row_pointers[k] = mpi->planes[0]+mpi->stride[0]*k; |
174 | |
527 | 175 //png_write_flush(png.png_ptr); |
176 //png_set_flush(png.png_ptr, nrows); | |
177 | |
178 if(verbose > 1) printf("PNG Writing Image Data\n"); | |
179 png_write_image(png.png_ptr, row_pointers); | |
180 | |
7693 | 181 destroy_png(png); |
527 | 182 |
7693 | 183 return VO_TRUE; |
527 | 184 } |
185 | |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
186 static void draw_osd(void){} |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1078
diff
changeset
|
187 |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
188 static void flip_page (void){} |
527 | 189 |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
190 static uint32_t draw_frame(uint8_t * src[]) |
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
191 { |
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
192 return -1; |
527 | 193 } |
194 | |
195 static uint32_t draw_slice( uint8_t *src[],int stride[],int w,int h,int x,int y ) | |
196 { | |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
197 return -1; |
527 | 198 } |
199 | |
200 static uint32_t | |
201 query_format(uint32_t format) | |
202 { | |
203 switch(format){ | |
204 case IMGFMT_RGB|24: | |
205 case IMGFMT_BGR|24: | |
7694
b64f14fdadfb
also set VFCAP_ACCEPT_STRIDE when draw_image() is implemented
arpi
parents:
7693
diff
changeset
|
206 return VFCAP_CSP_SUPPORTED|VFCAP_CSP_SUPPORTED_BY_HW|VFCAP_ACCEPT_STRIDE; |
527 | 207 } |
208 return 0; | |
209 } | |
210 | |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
211 static void uninit(void){} |
527 | 212 |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
213 static void check_events(void){} |
4352 | 214 |
215 static uint32_t preinit(const char *arg) | |
216 { | |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
217 if(arg) |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
218 { |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
219 printf("PNG Unknown subdevice: %s\n",arg); |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
220 return ENOSYS; |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
221 } |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
222 return 0; |
4352 | 223 } |
224 | |
4596 | 225 static uint32_t control(uint32_t request, void *data, ...) |
4352 | 226 { |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
227 switch (request) { |
7693 | 228 case VOCTRL_DRAW_IMAGE: |
229 return draw_image(data); | |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
230 case VOCTRL_QUERY_FORMAT: |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
231 return query_format(*((uint32_t*)data)); |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
232 } |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
233 return VO_NOTIMPL; |
4352 | 234 } |