Mercurial > mplayer.hg
annotate libmpcodecs/vf_screenshot.c @ 36163:d13733fdf789
Avoid using swab()
This is the only place where it is used and it is not
available universally (missing e.g. on Android).
author | reimar |
---|---|
date | Thu, 09 May 2013 10:53:20 +0000 |
parents | 8517826b0dbd |
children | 583523331410 |
rev | line source |
---|---|
30421
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
1 /* |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
2 * This file is part of MPlayer. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
3 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
7 * (at your option) any later version. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
8 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
12 * GNU General Public License for more details. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
13 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
17 */ |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30150
diff
changeset
|
18 |
17012 | 19 #include "config.h" |
16446 | 20 |
21 #include <stdio.h> | |
22 #include <stdlib.h> | |
28594
df67d03dde3b
Convert HAVE_MALLOC_H into a 0/1 definition, fixes the warning:
diego
parents:
27949
diff
changeset
|
23 #if HAVE_MALLOC_H |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
24 #include <malloc.h> |
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
25 #endif |
16446 | 26 #include <string.h> |
27 #include <inttypes.h> | |
28 | |
29 #include <sys/types.h> | |
30 #include <sys/stat.h> | |
31 #include <unistd.h> | |
32 | |
17012 | 33 #include "mp_msg.h" |
16446 | 34 |
35 #include "img_format.h" | |
36 #include "mp_image.h" | |
37 #include "vf.h" | |
38 #include "vf_scale.h" | |
39 | |
35712
d206960484fe
Add a number of missing libavutil header #includes.
diego
parents:
35114
diff
changeset
|
40 #include "libavutil/mem.h" |
18861 | 41 #include "libswscale/swscale.h" |
24731 | 42 #include "libavcodec/avcodec.h" |
43 | |
16446 | 44 struct vf_priv_s { |
45 int frameno; | |
16450 | 46 char fname[102]; |
19833 | 47 /// shot stores current screenshot mode: |
48 /// 0: don't take screenshots | |
49 /// 1: take single screenshot, reset to 0 afterwards | |
50 /// 2: take screenshots of each frame | |
16450 | 51 int shot, store_slices; |
52 int dw, dh, stride; | |
16446 | 53 uint8_t *buffer; |
54 struct SwsContext *ctx; | |
24731 | 55 AVCodecContext *avctx; |
56 uint8_t *outbuffer; | |
57 int outbuffer_size; | |
16446 | 58 }; |
59 | |
60 //===========================================================================// | |
61 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
62 static int config(struct vf_instance *vf, |
27947 | 63 int width, int height, int d_width, int d_height, |
64 unsigned int flags, unsigned int outfmt) | |
16446 | 65 { |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
66 vf->priv->ctx=sws_getContextFromCmdLine(width, height, outfmt, |
27947 | 67 d_width, d_height, IMGFMT_RGB24); |
16446 | 68 |
24731 | 69 vf->priv->outbuffer_size = d_width * d_height * 3 * 2; |
70 vf->priv->outbuffer = realloc(vf->priv->outbuffer, vf->priv->outbuffer_size); | |
71 vf->priv->avctx->width = d_width; | |
72 vf->priv->avctx->height = d_height; | |
73 vf->priv->avctx->compression_level = 0; | |
16446 | 74 vf->priv->dw = d_width; |
75 vf->priv->dh = d_height; | |
16450 | 76 vf->priv->stride = (3*vf->priv->dw+15)&~15; |
16446 | 77 |
32537
8fa2f43cb760
Remove most of the NULL pointer check before free all over the code
cboesch
parents:
31082
diff
changeset
|
78 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
|
79 vf->priv->buffer = NULL; |
16446 | 80 |
81 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt); | |
82 } | |
83 | |
24731 | 84 static void write_png(struct vf_priv_s *priv) |
16446 | 85 { |
24731 | 86 char *fname = priv->fname; |
16446 | 87 FILE * fp; |
24731 | 88 AVFrame pic; |
89 int size; | |
16446 | 90 |
91 fp = fopen (fname, "wb"); | |
92 if (fp == NULL) { | |
27947 | 93 mp_msg(MSGT_VFILTER,MSGL_ERR,"\nPNG Error opening %s for writing!\n", fname); |
94 return; | |
16446 | 95 } |
27947 | 96 |
24731 | 97 pic.data[0] = priv->buffer; |
98 pic.linesize[0] = priv->stride; | |
99 size = avcodec_encode_video(priv->avctx, priv->outbuffer, priv->outbuffer_size, &pic); | |
100 if (size > 0) | |
101 fwrite(priv->outbuffer, size, 1, fp); | |
16446 | 102 |
103 fclose (fp); | |
104 } | |
105 | |
106 static int fexists(char *fname) | |
107 { | |
108 struct stat dummy; | |
109 if (stat(fname, &dummy) == 0) return 1; | |
110 else return 0; | |
111 } | |
112 | |
16450 | 113 static void gen_fname(struct vf_priv_s* priv) |
16446 | 114 { |
16450 | 115 do { |
27947 | 116 snprintf (priv->fname, 100, "shot%04d.png", ++priv->frameno); |
16450 | 117 } while (fexists(priv->fname) && priv->frameno < 100000); |
16457 | 118 if (fexists(priv->fname)) { |
27947 | 119 priv->fname[0] = '\0'; |
120 return; | |
16457 | 121 } |
16450 | 122 |
123 mp_msg(MSGT_VFILTER,MSGL_INFO,"*** screenshot '%s' ***\n",priv->fname); | |
124 | |
125 } | |
126 | |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
127 static void scale_image(struct vf_priv_s* priv, mp_image_t *mpi) |
16450 | 128 { |
29064
67c256364220
Consistently use MP_MAX_PLANES as size for plane pointer/stride arrays in libmpcodecs.
reimar
parents:
28594
diff
changeset
|
129 uint8_t *dst[MP_MAX_PLANES] = {NULL}; |
67c256364220
Consistently use MP_MAX_PLANES as size for plane pointer/stride arrays in libmpcodecs.
reimar
parents:
28594
diff
changeset
|
130 int dst_stride[MP_MAX_PLANES] = {0}; |
27947 | 131 |
16450 | 132 dst_stride[0] = priv->stride; |
16446 | 133 if (!priv->buffer) |
31003
00825525514e
Replace memalign(x) (x > 8) by av_malloc() to prevent crashes on systems
zuxy
parents:
30642
diff
changeset
|
134 priv->buffer = av_malloc(dst_stride[0]*priv->dh); |
16446 | 135 |
136 dst[0] = priv->buffer; | |
30150
16c71b965952
Replace deprecated sws_scale_ordered usages by sws_scale (which does the same).
reimar
parents:
30143
diff
changeset
|
137 sws_scale(priv->ctx, mpi->planes, mpi->stride, 0, priv->dh, dst, dst_stride); |
16450 | 138 } |
16446 | 139 |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
140 static void start_slice(struct vf_instance *vf, mp_image_t *mpi) |
27948 | 141 { |
35114
bec9e755fb9b
Fix handling of out-of-order slice rendered frames.
reimar
parents:
34659
diff
changeset
|
142 mpi->priv= |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
143 vf->dmpi=vf_get_image(vf->next,mpi->imgfmt, |
27947 | 144 mpi->type, mpi->flags, mpi->width, mpi->height); |
16450 | 145 if (vf->priv->shot) { |
27947 | 146 vf->priv->store_slices = 1; |
147 if (!vf->priv->buffer) | |
31003
00825525514e
Replace memalign(x) (x > 8) by av_malloc() to prevent crashes on systems
zuxy
parents:
30642
diff
changeset
|
148 vf->priv->buffer = av_malloc(vf->priv->stride*vf->priv->dh); |
16450 | 149 } |
27947 | 150 |
16450 | 151 } |
152 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
153 static void draw_slice(struct vf_instance *vf, unsigned char** src, |
27948 | 154 int* stride, int w,int h, int x, int y) |
155 { | |
16450 | 156 if (vf->priv->store_slices) { |
29064
67c256364220
Consistently use MP_MAX_PLANES as size for plane pointer/stride arrays in libmpcodecs.
reimar
parents:
28594
diff
changeset
|
157 uint8_t *dst[MP_MAX_PLANES] = {NULL}; |
67c256364220
Consistently use MP_MAX_PLANES as size for plane pointer/stride arrays in libmpcodecs.
reimar
parents:
28594
diff
changeset
|
158 int dst_stride[MP_MAX_PLANES] = {0}; |
27947 | 159 dst_stride[0] = vf->priv->stride; |
160 dst[0] = vf->priv->buffer; | |
30150
16c71b965952
Replace deprecated sws_scale_ordered usages by sws_scale (which does the same).
reimar
parents:
30143
diff
changeset
|
161 sws_scale(vf->priv->ctx, src, stride, y, h, dst, dst_stride); |
16450 | 162 } |
163 vf_next_draw_slice(vf,src,stride,w,h,x,y); | |
164 } | |
165 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
166 static void get_image(struct vf_instance *vf, mp_image_t *mpi) |
27948 | 167 { |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
168 // 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
|
169 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
|
170 return; |
27947 | 171 vf->dmpi= vf_get_image(vf->next, mpi->imgfmt, |
172 mpi->type, mpi->flags/* | MP_IMGFLAG_READABLE*/, mpi->width, mpi->height); | |
16456 | 173 |
16450 | 174 mpi->planes[0]=vf->dmpi->planes[0]; |
175 mpi->stride[0]=vf->dmpi->stride[0]; | |
176 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
27947 | 177 mpi->planes[1]=vf->dmpi->planes[1]; |
178 mpi->planes[2]=vf->dmpi->planes[2]; | |
179 mpi->stride[1]=vf->dmpi->stride[1]; | |
180 mpi->stride[2]=vf->dmpi->stride[2]; | |
16450 | 181 } |
182 mpi->width=vf->dmpi->width; | |
183 | |
184 mpi->flags|=MP_IMGFLAG_DIRECT; | |
27947 | 185 |
16450 | 186 mpi->priv=(void*)vf->dmpi; |
16446 | 187 } |
188 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
189 static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts) |
16446 | 190 { |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
191 mp_image_t *dmpi = (mp_image_t *)mpi->priv; |
27947 | 192 |
35114
bec9e755fb9b
Fix handling of out-of-order slice rendered frames.
reimar
parents:
34659
diff
changeset
|
193 if(!(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK))){ |
27947 | 194 dmpi=vf_get_image(vf->next,mpi->imgfmt, |
195 MP_IMGTYPE_EXPORT, 0, | |
196 mpi->width, mpi->height); | |
197 vf_clone_mpi_attributes(dmpi, mpi); | |
198 dmpi->planes[0]=mpi->planes[0]; | |
199 dmpi->planes[1]=mpi->planes[1]; | |
200 dmpi->planes[2]=mpi->planes[2]; | |
201 dmpi->stride[0]=mpi->stride[0]; | |
202 dmpi->stride[1]=mpi->stride[1]; | |
203 dmpi->stride[2]=mpi->stride[2]; | |
204 dmpi->width=mpi->width; | |
205 dmpi->height=mpi->height; | |
16450 | 206 } |
16446 | 207 |
208 if(vf->priv->shot) { | |
27947 | 209 if (vf->priv->shot==1) |
210 vf->priv->shot=0; | |
211 gen_fname(vf->priv); | |
212 if (vf->priv->fname[0]) { | |
213 if (!vf->priv->store_slices) | |
214 scale_image(vf->priv, dmpi); | |
215 write_png(vf->priv); | |
216 } | |
217 vf->priv->store_slices = 0; | |
16446 | 218 } |
219 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
220 return vf_next_put_image(vf, dmpi, pts); |
16446 | 221 } |
222 | |
29702
28fb967d78d8
Mark some functions that do not need external visibility as static.
diego
parents:
29064
diff
changeset
|
223 static int control (vf_instance_t *vf, int request, void *data) |
16446 | 224 { |
19833 | 225 /** data contains an integer argument |
226 * 0: take screenshot with the next frame | |
227 * 1: take screenshots with each frame until the same command is given once again | |
228 **/ | |
16446 | 229 if(request==VFCTRL_SCREENSHOT) { |
27947 | 230 if (data && *(int*)data) { // repeated screenshot mode |
231 if (vf->priv->shot==2) | |
232 vf->priv->shot=0; | |
233 else | |
234 vf->priv->shot=2; | |
235 } else { // single screenshot | |
236 if (!vf->priv->shot) | |
237 vf->priv->shot=1; | |
238 } | |
16446 | 239 return CONTROL_TRUE; |
240 } | |
241 return vf_next_control (vf, request, data); | |
242 } | |
243 | |
244 | |
245 //===========================================================================// | |
246 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
247 static int query_format(struct vf_instance *vf, unsigned int fmt) |
16446 | 248 { |
249 switch(fmt){ | |
250 case IMGFMT_YV12: | |
251 case IMGFMT_I420: | |
252 case IMGFMT_IYUV: | |
253 case IMGFMT_UYVY: | |
254 case IMGFMT_YUY2: | |
255 case IMGFMT_BGR32: | |
256 case IMGFMT_BGR24: | |
257 case IMGFMT_BGR16: | |
258 case IMGFMT_BGR15: | |
31082
92f88bb315c5
Add support for 12-bit color mode on framebuffer devices.
cehoyos
parents:
31003
diff
changeset
|
259 case IMGFMT_BGR12: |
16446 | 260 case IMGFMT_RGB32: |
261 case IMGFMT_RGB24: | |
27947 | 262 case IMGFMT_Y800: |
263 case IMGFMT_Y8: | |
264 case IMGFMT_YVU9: | |
265 case IMGFMT_IF09: | |
266 case IMGFMT_444P: | |
267 case IMGFMT_422P: | |
268 case IMGFMT_411P: | |
269 return vf_next_query_format(vf, fmt); | |
16446 | 270 } |
271 return 0; | |
272 } | |
273 | |
27949
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
274 static void uninit(vf_instance_t *vf) |
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
275 { |
30143 | 276 avcodec_close(vf->priv->avctx); |
27949
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
277 av_freep(&vf->priv->avctx); |
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
278 if(vf->priv->ctx) sws_freeContext(vf->priv->ctx); |
32537
8fa2f43cb760
Remove most of the NULL pointer check before free all over the code
cboesch
parents:
31082
diff
changeset
|
279 av_free(vf->priv->buffer); |
27949
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
280 free(vf->priv->outbuffer); |
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
281 free(vf->priv); |
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
282 } |
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
283 |
30638
a7b908875c14
Rename open() vf initialization function to vf_open().
diego
parents:
30421
diff
changeset
|
284 static int vf_open(vf_instance_t *vf, char *args) |
16446 | 285 { |
286 vf->config=config; | |
287 vf->control=control; | |
288 vf->put_image=put_image; | |
289 vf->query_format=query_format; | |
16450 | 290 vf->start_slice=start_slice; |
291 vf->draw_slice=draw_slice; | |
292 vf->get_image=get_image; | |
16874 | 293 vf->uninit=uninit; |
16446 | 294 vf->priv=malloc(sizeof(struct vf_priv_s)); |
295 vf->priv->frameno=0; | |
296 vf->priv->shot=0; | |
16450 | 297 vf->priv->store_slices=0; |
16446 | 298 vf->priv->buffer=0; |
24731 | 299 vf->priv->outbuffer=0; |
16446 | 300 vf->priv->ctx=0; |
34566
f3d53cd55376
Update deprecated avcodec_alloc_context()/avcodec_open() API calls
siretart
parents:
32537
diff
changeset
|
301 vf->priv->avctx = avcodec_alloc_context3(NULL); |
34659 | 302 vf->priv->avctx->pix_fmt = PIX_FMT_RGB24; |
24731 | 303 avcodec_register_all(); |
35715
8517826b0dbd
Replace CODEC_IDs their modern AV_-prefixed counterparts.
diego
parents:
35712
diff
changeset
|
304 if (avcodec_open2(vf->priv->avctx, avcodec_find_encoder(AV_CODEC_ID_PNG), NULL)) { |
24731 | 305 mp_msg(MSGT_VFILTER, MSGL_FATAL, "Could not open libavcodec PNG encoder\n"); |
306 return 0; | |
307 } | |
16446 | 308 return 1; |
309 } | |
310 | |
311 | |
25221 | 312 const vf_info_t vf_info_screenshot = { |
16446 | 313 "screenshot to file", |
314 "screenshot", | |
315 "A'rpi, Jindrich Makovicka", | |
316 "", | |
30638
a7b908875c14
Rename open() vf initialization function to vf_open().
diego
parents:
30421
diff
changeset
|
317 vf_open, |
16446 | 318 NULL |
319 }; | |
320 | |
321 //===========================================================================// |