Mercurial > mplayer.hg
annotate libmpcodecs/vf_screenshot.c @ 19405:0797e1b4a4be
Replace stdint.h with inttypes.h.
author | eugeni |
---|---|
date | Tue, 15 Aug 2006 22:46:56 +0000 |
parents | cc65a585fdcc |
children | 10f36060390a |
rev | line source |
---|---|
17012 | 1 #include "config.h" |
16446 | 2 |
3 #include <stdio.h> | |
4 #include <stdlib.h> | |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
5 #ifdef HAVE_MALLOC_H |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
6 #include <malloc.h> |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
7 #endif |
16446 | 8 #include <string.h> |
9 #include <inttypes.h> | |
10 | |
11 #include <sys/types.h> | |
12 #include <sys/stat.h> | |
13 #include <unistd.h> | |
14 | |
15 #include <png.h> | |
16 | |
17012 | 17 #include "mp_msg.h" |
16446 | 18 |
19 #include "img_format.h" | |
20 #include "mp_image.h" | |
21 #include "vf.h" | |
22 #include "vf_scale.h" | |
23 | |
17012 | 24 #include "libvo/fastmemcpy.h" |
18861 | 25 #include "libswscale/swscale.h" |
16446 | 26 |
27 struct vf_priv_s { | |
28 int frameno; | |
16450 | 29 char fname[102]; |
30 int shot, store_slices; | |
31 int dw, dh, stride; | |
16446 | 32 uint8_t *buffer; |
33 struct SwsContext *ctx; | |
34 }; | |
35 | |
36 //===========================================================================// | |
37 | |
38 static int config(struct vf_instance_s* vf, | |
39 int width, int height, int d_width, int d_height, | |
40 unsigned int flags, unsigned int outfmt) | |
41 { | |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
42 vf->priv->ctx=sws_getContextFromCmdLine(width, height, outfmt, |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
43 d_width, d_height, IMGFMT_BGR24); |
16446 | 44 |
45 vf->priv->dw = d_width; | |
46 vf->priv->dh = d_height; | |
16450 | 47 vf->priv->stride = (3*vf->priv->dw+15)&~15; |
16446 | 48 |
49 if (vf->priv->buffer) free(vf->priv->buffer); // probably reconfigured | |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
50 vf->priv->buffer = NULL; |
16446 | 51 |
52 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt); | |
53 } | |
54 | |
18484
28fd6f89e1b8
Make return type consistent with usage. Patch by Pierre Lombard.
rathann
parents:
17906
diff
changeset
|
55 static void write_png(char *fname, unsigned char *buffer, int width, int height, int stride) |
16446 | 56 { |
57 FILE * fp; | |
58 png_structp png_ptr; | |
59 png_infop info_ptr; | |
60 png_byte **row_pointers; | |
61 int k; | |
62 | |
63 png_ptr = png_create_write_struct (PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); | |
64 info_ptr = png_create_info_struct(png_ptr); | |
65 fp = NULL; | |
66 | |
67 if (setjmp(png_ptr->jmpbuf)) { | |
68 png_destroy_write_struct(&png_ptr, &info_ptr); | |
69 fclose(fp); | |
18484
28fd6f89e1b8
Make return type consistent with usage. Patch by Pierre Lombard.
rathann
parents:
17906
diff
changeset
|
70 return; |
16446 | 71 } |
72 | |
73 fp = fopen (fname, "wb"); | |
74 if (fp == NULL) { | |
75 mp_msg(MSGT_VFILTER,MSGL_ERR,"\nPNG Error opening %s for writing!\n", fname); | |
18484
28fd6f89e1b8
Make return type consistent with usage. Patch by Pierre Lombard.
rathann
parents:
17906
diff
changeset
|
76 return; |
16446 | 77 } |
78 | |
79 png_init_io(png_ptr, fp); | |
80 png_set_compression_level(png_ptr, 0); | |
81 | |
82 png_set_IHDR(png_ptr, info_ptr, width, height, | |
83 8, PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE, | |
84 PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT); | |
85 | |
86 png_write_info(png_ptr, info_ptr); | |
87 | |
88 png_set_bgr(png_ptr); | |
89 | |
18879 | 90 row_pointers = malloc(height*sizeof(png_byte*)); |
16450 | 91 for (k = 0; k < height; k++) { |
16446 | 92 unsigned char* s=buffer + stride*k; |
93 row_pointers[k] = s; | |
94 } | |
95 | |
96 png_write_image(png_ptr, row_pointers); | |
97 png_write_end(png_ptr, info_ptr); | |
98 png_destroy_write_struct(&png_ptr, &info_ptr); | |
99 | |
100 free(row_pointers); | |
101 | |
102 fclose (fp); | |
103 } | |
104 | |
105 static int fexists(char *fname) | |
106 { | |
107 struct stat dummy; | |
108 if (stat(fname, &dummy) == 0) return 1; | |
109 else return 0; | |
110 } | |
111 | |
16450 | 112 static void gen_fname(struct vf_priv_s* priv) |
16446 | 113 { |
16450 | 114 do { |
115 snprintf (priv->fname, 100, "shot%04d.png", ++priv->frameno); | |
116 } while (fexists(priv->fname) && priv->frameno < 100000); | |
16457 | 117 if (fexists(priv->fname)) { |
118 priv->fname[0] = '\0'; | |
119 return; | |
120 } | |
16450 | 121 |
122 mp_msg(MSGT_VFILTER,MSGL_INFO,"*** screenshot '%s' ***\n",priv->fname); | |
123 | |
124 } | |
125 | |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
126 static void scale_image(struct vf_priv_s* priv, mp_image_t *mpi) |
16450 | 127 { |
16446 | 128 uint8_t *dst[3]; |
129 int dst_stride[3]; | |
130 | |
16450 | 131 dst_stride[0] = priv->stride; |
16446 | 132 dst_stride[1] = dst_stride[2] = 0; |
133 if (!priv->buffer) | |
134 priv->buffer = (uint8_t*)memalign(16, dst_stride[0]*priv->dh); | |
135 | |
136 dst[0] = priv->buffer; | |
137 dst[1] = dst[2] = 0; | |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
138 sws_scale_ordered(priv->ctx, mpi->planes, mpi->stride, 0, mpi->height, dst, dst_stride); |
16450 | 139 } |
16446 | 140 |
16450 | 141 static void start_slice(struct vf_instance_s* vf, mp_image_t *mpi){ |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
142 vf->dmpi=vf_get_image(vf->next,mpi->imgfmt, |
16450 | 143 mpi->type, mpi->flags, mpi->width, mpi->height); |
144 if (vf->priv->shot) { | |
145 vf->priv->store_slices = 1; | |
146 if (!vf->priv->buffer) | |
147 vf->priv->buffer = (uint8_t*)memalign(16, vf->priv->stride*vf->priv->dh); | |
148 } | |
149 | |
150 } | |
151 | |
152 static void draw_slice(struct vf_instance_s* vf, | |
153 unsigned char** src, int* stride, int w,int h, int x, int y){ | |
154 if (vf->priv->store_slices) { | |
155 uint8_t *dst[3]; | |
156 int dst_stride[3]; | |
157 dst_stride[0] = vf->priv->stride; | |
158 dst_stride[1] = dst_stride[2] = 0; | |
159 dst[0] = vf->priv->buffer; | |
160 dst[1] = dst[2] = 0; | |
161 sws_scale_ordered(vf->priv->ctx, src, stride, y, h, dst, dst_stride); | |
162 } | |
163 vf_next_draw_slice(vf,src,stride,w,h,x,y); | |
164 } | |
165 | |
166 static void get_image(struct vf_instance_s* vf, mp_image_t *mpi){ | |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
167 // FIXME: should vf.c really call get_image when using slices?? |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
168 if (mpi->flags & MP_IMGFLAG_DRAW_CALLBACK) |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
169 return; |
16450 | 170 vf->dmpi= vf_get_image(vf->next, mpi->imgfmt, |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
171 mpi->type, mpi->flags/* | MP_IMGFLAG_READABLE*/, mpi->width, mpi->height); |
16456 | 172 |
16450 | 173 mpi->planes[0]=vf->dmpi->planes[0]; |
174 mpi->stride[0]=vf->dmpi->stride[0]; | |
175 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
176 mpi->planes[1]=vf->dmpi->planes[1]; | |
177 mpi->planes[2]=vf->dmpi->planes[2]; | |
178 mpi->stride[1]=vf->dmpi->stride[1]; | |
179 mpi->stride[2]=vf->dmpi->stride[2]; | |
180 } | |
181 mpi->width=vf->dmpi->width; | |
182 | |
183 mpi->flags|=MP_IMGFLAG_DIRECT; | |
184 | |
185 mpi->priv=(void*)vf->dmpi; | |
16446 | 186 } |
187 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
188 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts) |
16446 | 189 { |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
190 mp_image_t *dmpi = (mp_image_t *)mpi->priv; |
16450 | 191 |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
192 if (mpi->flags & MP_IMGFLAG_DRAW_CALLBACK) |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
193 dmpi = vf->dmpi; |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
194 else |
16450 | 195 if(!(mpi->flags&MP_IMGFLAG_DIRECT)){ |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
196 dmpi=vf_get_image(vf->next,mpi->imgfmt, |
16450 | 197 MP_IMGTYPE_EXPORT, 0, |
198 mpi->width, mpi->height); | |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
199 vf_clone_mpi_attributes(dmpi, mpi); |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
200 dmpi->planes[0]=mpi->planes[0]; |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
201 dmpi->planes[1]=mpi->planes[1]; |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
202 dmpi->planes[2]=mpi->planes[2]; |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
203 dmpi->stride[0]=mpi->stride[0]; |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
204 dmpi->stride[1]=mpi->stride[1]; |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
205 dmpi->stride[2]=mpi->stride[2]; |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
206 dmpi->width=mpi->width; |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
207 dmpi->height=mpi->height; |
16450 | 208 } |
16446 | 209 |
210 if(vf->priv->shot) { | |
16450 | 211 vf->priv->shot=0; |
212 gen_fname(vf->priv); | |
16457 | 213 if (vf->priv->fname[0]) { |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
214 if (!vf->priv->store_slices) |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
215 scale_image(vf->priv, dmpi); |
16457 | 216 write_png(vf->priv->fname, vf->priv->buffer, vf->priv->dw, vf->priv->dh, vf->priv->stride); |
217 } | |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
218 vf->priv->store_slices = 0; |
16446 | 219 } |
220 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
221 return vf_next_put_image(vf, dmpi, pts); |
16446 | 222 } |
223 | |
224 int control (vf_instance_t *vf, int request, void *data) | |
225 { | |
226 if(request==VFCTRL_SCREENSHOT) { | |
227 vf->priv->shot=1; | |
228 return CONTROL_TRUE; | |
229 } | |
230 return vf_next_control (vf, request, data); | |
231 } | |
232 | |
233 | |
234 //===========================================================================// | |
235 | |
236 static int query_format(struct vf_instance_s* vf, unsigned int fmt) | |
237 { | |
238 switch(fmt){ | |
239 case IMGFMT_YV12: | |
240 case IMGFMT_I420: | |
241 case IMGFMT_IYUV: | |
242 case IMGFMT_UYVY: | |
243 case IMGFMT_YUY2: | |
244 case IMGFMT_BGR32: | |
245 case IMGFMT_BGR24: | |
246 case IMGFMT_BGR16: | |
247 case IMGFMT_BGR15: | |
248 case IMGFMT_RGB32: | |
249 case IMGFMT_RGB24: | |
250 case IMGFMT_Y800: | |
251 case IMGFMT_Y8: | |
252 case IMGFMT_YVU9: | |
253 case IMGFMT_IF09: | |
254 case IMGFMT_444P: | |
255 case IMGFMT_422P: | |
256 case IMGFMT_411P: | |
257 return vf_next_query_format(vf, fmt); | |
258 } | |
259 return 0; | |
260 } | |
261 | |
16874 | 262 static void uninit(vf_instance_t *vf); |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
263 // open conflicts with stdio.h at least under MinGW |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
264 static int screenshot_open(vf_instance_t *vf, char* args) |
16446 | 265 { |
266 vf->config=config; | |
267 vf->control=control; | |
268 vf->put_image=put_image; | |
269 vf->query_format=query_format; | |
16450 | 270 vf->start_slice=start_slice; |
271 vf->draw_slice=draw_slice; | |
272 vf->get_image=get_image; | |
16874 | 273 vf->uninit=uninit; |
16446 | 274 vf->priv=malloc(sizeof(struct vf_priv_s)); |
275 vf->priv->frameno=0; | |
276 vf->priv->shot=0; | |
16450 | 277 vf->priv->store_slices=0; |
16446 | 278 vf->priv->buffer=0; |
279 vf->priv->ctx=0; | |
280 return 1; | |
281 } | |
282 | |
283 static void uninit(vf_instance_t *vf) | |
284 { | |
285 if(vf->priv->ctx) sws_freeContext(vf->priv->ctx); | |
286 if (vf->priv->buffer) free(vf->priv->buffer); | |
287 free(vf->priv); | |
288 } | |
289 | |
290 | |
291 vf_info_t vf_info_screenshot = { | |
292 "screenshot to file", | |
293 "screenshot", | |
294 "A'rpi, Jindrich Makovicka", | |
295 "", | |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
296 screenshot_open, |
16446 | 297 NULL |
298 }; | |
299 | |
300 //===========================================================================// |