Mercurial > mplayer.hg
annotate libmpcodecs/vf_screenshot.c @ 36754:122de2aa583b
vf_screenshot: use calloc.
author | reimar |
---|---|
date | Sun, 16 Feb 2014 14:47:32 +0000 |
parents | b3afe52119c4 |
children | 1644cfb31b2f |
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; | |
36752
af146b0d33f0
Allow specifying custom path and name for screenshot files.
reimar
parents:
36751
diff
changeset
|
46 char fname[PATH_MAX]; |
af146b0d33f0
Allow specifying custom path and name for screenshot files.
reimar
parents:
36751
diff
changeset
|
47 char *prefix; |
19833 | 48 /// shot stores current screenshot mode: |
49 /// 0: don't take screenshots | |
50 /// 1: take single screenshot, reset to 0 afterwards | |
51 /// 2: take screenshots of each frame | |
16450 | 52 int shot, store_slices; |
36753
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
53 int dw, dh; |
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
54 AVFrame *pic; |
16446 | 55 struct SwsContext *ctx; |
24731 | 56 AVCodecContext *avctx; |
57 uint8_t *outbuffer; | |
58 int outbuffer_size; | |
16446 | 59 }; |
60 | |
61 //===========================================================================// | |
62 | |
36309 | 63 static void draw_slice(struct vf_instance *vf, unsigned char** src, |
64 int* stride, int w,int h, int x, int y) | |
65 { | |
66 if (vf->priv->store_slices) { | |
36753
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
67 sws_scale(vf->priv->ctx, src, stride, y, h, vf->priv->pic->data, vf->priv->pic->linesize); |
36309 | 68 } |
69 vf_next_draw_slice(vf,src,stride,w,h,x,y); | |
70 } | |
71 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
72 static int config(struct vf_instance *vf, |
27947 | 73 int width, int height, int d_width, int d_height, |
74 unsigned int flags, unsigned int outfmt) | |
16446 | 75 { |
36309 | 76 int res; |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
77 vf->priv->ctx=sws_getContextFromCmdLine(width, height, outfmt, |
27947 | 78 d_width, d_height, IMGFMT_RGB24); |
16446 | 79 |
24731 | 80 vf->priv->outbuffer_size = d_width * d_height * 3 * 2; |
81 vf->priv->outbuffer = realloc(vf->priv->outbuffer, vf->priv->outbuffer_size); | |
82 vf->priv->avctx->width = d_width; | |
83 vf->priv->avctx->height = d_height; | |
84 vf->priv->avctx->compression_level = 0; | |
16446 | 85 vf->priv->dw = d_width; |
86 vf->priv->dh = d_height; | |
36753
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
87 vf->priv->pic->linesize[0] = (3*vf->priv->dw+15)&~15; |
16446 | 88 |
36753
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
89 av_freep(&vf->priv->pic->data[0]); // probably reconfigured |
16446 | 90 |
36309 | 91 res = vf_next_config(vf,width,height,d_width,d_height,flags,outfmt); |
92 // Our draw_slice only works properly if the | |
93 // following filter can do slices. | |
94 vf->draw_slice=vf->next->draw_slice ? draw_slice : NULL; | |
95 return res; | |
16446 | 96 } |
97 | |
24731 | 98 static void write_png(struct vf_priv_s *priv) |
16446 | 99 { |
24731 | 100 char *fname = priv->fname; |
16446 | 101 FILE * fp; |
36753
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
102 AVPacket pkt; |
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
103 int res, got_pkt; |
16446 | 104 |
105 fp = fopen (fname, "wb"); | |
106 if (fp == NULL) { | |
27947 | 107 mp_msg(MSGT_VFILTER,MSGL_ERR,"\nPNG Error opening %s for writing!\n", fname); |
108 return; | |
16446 | 109 } |
27947 | 110 |
36753
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
111 av_init_packet(&pkt); |
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
112 pkt.data = priv->outbuffer; |
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
113 pkt.size = priv->outbuffer_size; |
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
114 res = avcodec_encode_video2(priv->avctx, &pkt, priv->pic, &got_pkt); |
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
115 if (res >= 0 && got_pkt && pkt.size > 0) |
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
116 fwrite(priv->outbuffer, pkt.size, 1, fp); |
16446 | 117 |
118 fclose (fp); | |
119 } | |
120 | |
121 static int fexists(char *fname) | |
122 { | |
123 struct stat dummy; | |
36750 | 124 return stat(fname, &dummy) == 0; |
16446 | 125 } |
126 | |
16450 | 127 static void gen_fname(struct vf_priv_s* priv) |
16446 | 128 { |
16450 | 129 do { |
36752
af146b0d33f0
Allow specifying custom path and name for screenshot files.
reimar
parents:
36751
diff
changeset
|
130 snprintf(priv->fname, sizeof(priv->fname), "%s%04d.png", priv->prefix, ++priv->frameno); |
16450 | 131 } while (fexists(priv->fname) && priv->frameno < 100000); |
16457 | 132 if (fexists(priv->fname)) { |
27947 | 133 priv->fname[0] = '\0'; |
134 return; | |
16457 | 135 } |
16450 | 136 |
137 mp_msg(MSGT_VFILTER,MSGL_INFO,"*** screenshot '%s' ***\n",priv->fname); | |
138 | |
139 } | |
140 | |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
141 static void scale_image(struct vf_priv_s* priv, mp_image_t *mpi) |
16450 | 142 { |
36753
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
143 if (!priv->pic->data[0]) |
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
144 priv->pic->data[0] = av_malloc(priv->pic->linesize[0]*priv->dh); |
27947 | 145 |
36753
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
146 sws_scale(priv->ctx, mpi->planes, mpi->stride, 0, priv->dh, priv->pic->data, priv->pic->linesize); |
16450 | 147 } |
16446 | 148 |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
149 static void start_slice(struct vf_instance *vf, mp_image_t *mpi) |
27948 | 150 { |
35114
bec9e755fb9b
Fix handling of out-of-order slice rendered frames.
reimar
parents:
34659
diff
changeset
|
151 mpi->priv= |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
152 vf->dmpi=vf_get_image(vf->next,mpi->imgfmt, |
27947 | 153 mpi->type, mpi->flags, mpi->width, mpi->height); |
16450 | 154 if (vf->priv->shot) { |
27947 | 155 vf->priv->store_slices = 1; |
36753
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
156 if (!vf->priv->pic->data[0]) |
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
157 vf->priv->pic->data[0] = av_malloc(vf->priv->pic->linesize[0]*vf->priv->dh); |
16450 | 158 } |
27947 | 159 |
16450 | 160 } |
161 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
162 static void get_image(struct vf_instance *vf, mp_image_t *mpi) |
27948 | 163 { |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
164 // 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
|
165 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
|
166 return; |
27947 | 167 vf->dmpi= vf_get_image(vf->next, mpi->imgfmt, |
168 mpi->type, mpi->flags/* | MP_IMGFLAG_READABLE*/, mpi->width, mpi->height); | |
16456 | 169 |
16450 | 170 mpi->planes[0]=vf->dmpi->planes[0]; |
171 mpi->stride[0]=vf->dmpi->stride[0]; | |
172 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
27947 | 173 mpi->planes[1]=vf->dmpi->planes[1]; |
174 mpi->planes[2]=vf->dmpi->planes[2]; | |
175 mpi->stride[1]=vf->dmpi->stride[1]; | |
176 mpi->stride[2]=vf->dmpi->stride[2]; | |
16450 | 177 } |
178 mpi->width=vf->dmpi->width; | |
179 | |
180 mpi->flags|=MP_IMGFLAG_DIRECT; | |
27947 | 181 |
16450 | 182 mpi->priv=(void*)vf->dmpi; |
16446 | 183 } |
184 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
185 static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts) |
16446 | 186 { |
16464
0a828abf1f0f
Fix multiple issues: No picture at all, broken pictures, only every second
reimar
parents:
16457
diff
changeset
|
187 mp_image_t *dmpi = (mp_image_t *)mpi->priv; |
27947 | 188 |
35114
bec9e755fb9b
Fix handling of out-of-order slice rendered frames.
reimar
parents:
34659
diff
changeset
|
189 if(!(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK))){ |
27947 | 190 dmpi=vf_get_image(vf->next,mpi->imgfmt, |
191 MP_IMGTYPE_EXPORT, 0, | |
192 mpi->width, mpi->height); | |
193 vf_clone_mpi_attributes(dmpi, mpi); | |
194 dmpi->planes[0]=mpi->planes[0]; | |
195 dmpi->planes[1]=mpi->planes[1]; | |
196 dmpi->planes[2]=mpi->planes[2]; | |
197 dmpi->stride[0]=mpi->stride[0]; | |
198 dmpi->stride[1]=mpi->stride[1]; | |
199 dmpi->stride[2]=mpi->stride[2]; | |
200 dmpi->width=mpi->width; | |
201 dmpi->height=mpi->height; | |
16450 | 202 } |
16446 | 203 |
204 if(vf->priv->shot) { | |
27947 | 205 if (vf->priv->shot==1) |
206 vf->priv->shot=0; | |
207 gen_fname(vf->priv); | |
208 if (vf->priv->fname[0]) { | |
209 if (!vf->priv->store_slices) | |
210 scale_image(vf->priv, dmpi); | |
211 write_png(vf->priv); | |
212 } | |
213 vf->priv->store_slices = 0; | |
16446 | 214 } |
215 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
216 return vf_next_put_image(vf, dmpi, pts); |
16446 | 217 } |
218 | |
29702
28fb967d78d8
Mark some functions that do not need external visibility as static.
diego
parents:
29064
diff
changeset
|
219 static int control (vf_instance_t *vf, int request, void *data) |
16446 | 220 { |
19833 | 221 /** data contains an integer argument |
222 * 0: take screenshot with the next frame | |
223 * 1: take screenshots with each frame until the same command is given once again | |
224 **/ | |
16446 | 225 if(request==VFCTRL_SCREENSHOT) { |
27947 | 226 if (data && *(int*)data) { // repeated screenshot mode |
227 if (vf->priv->shot==2) | |
228 vf->priv->shot=0; | |
229 else | |
230 vf->priv->shot=2; | |
231 } else { // single screenshot | |
232 if (!vf->priv->shot) | |
233 vf->priv->shot=1; | |
234 } | |
16446 | 235 return CONTROL_TRUE; |
236 } | |
237 return vf_next_control (vf, request, data); | |
238 } | |
239 | |
240 | |
241 //===========================================================================// | |
242 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
243 static int query_format(struct vf_instance *vf, unsigned int fmt) |
16446 | 244 { |
245 switch(fmt){ | |
246 case IMGFMT_YV12: | |
247 case IMGFMT_I420: | |
248 case IMGFMT_IYUV: | |
249 case IMGFMT_UYVY: | |
250 case IMGFMT_YUY2: | |
251 case IMGFMT_BGR32: | |
252 case IMGFMT_BGR24: | |
253 case IMGFMT_BGR16: | |
254 case IMGFMT_BGR15: | |
31082
92f88bb315c5
Add support for 12-bit color mode on framebuffer devices.
cehoyos
parents:
31003
diff
changeset
|
255 case IMGFMT_BGR12: |
16446 | 256 case IMGFMT_RGB32: |
257 case IMGFMT_RGB24: | |
27947 | 258 case IMGFMT_Y800: |
259 case IMGFMT_Y8: | |
260 case IMGFMT_YVU9: | |
261 case IMGFMT_IF09: | |
262 case IMGFMT_444P: | |
263 case IMGFMT_422P: | |
264 case IMGFMT_411P: | |
265 return vf_next_query_format(vf, fmt); | |
16446 | 266 } |
267 return 0; | |
268 } | |
269 | |
27949
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
270 static void uninit(vf_instance_t *vf) |
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
271 { |
30143 | 272 avcodec_close(vf->priv->avctx); |
27949
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
273 av_freep(&vf->priv->avctx); |
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
274 if(vf->priv->ctx) sws_freeContext(vf->priv->ctx); |
36753
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
275 av_freep(&vf->priv->pic->data[0]); |
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
276 av_frame_free(&vf->priv->pic); |
27949
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
277 free(vf->priv->outbuffer); |
36752
af146b0d33f0
Allow specifying custom path and name for screenshot files.
reimar
parents:
36751
diff
changeset
|
278 free(vf->priv->prefix); |
27949
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
279 free(vf->priv); |
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
280 } |
88d793e52bd9
cosmetics: Move up uninit() to avoid a forward declaration.
diego
parents:
27948
diff
changeset
|
281 |
30638
a7b908875c14
Rename open() vf initialization function to vf_open().
diego
parents:
30421
diff
changeset
|
282 static int vf_open(vf_instance_t *vf, char *args) |
16446 | 283 { |
284 vf->config=config; | |
285 vf->control=control; | |
286 vf->put_image=put_image; | |
287 vf->query_format=query_format; | |
16450 | 288 vf->start_slice=start_slice; |
289 vf->draw_slice=draw_slice; | |
290 vf->get_image=get_image; | |
16874 | 291 vf->uninit=uninit; |
36754 | 292 vf->priv = calloc(1, sizeof(struct vf_priv_s)); |
36753
b3afe52119c4
vf_screenshot: Switch to avcodec_encode_video2 API.
reimar
parents:
36752
diff
changeset
|
293 vf->priv->pic = av_frame_alloc(); |
36752
af146b0d33f0
Allow specifying custom path and name for screenshot files.
reimar
parents:
36751
diff
changeset
|
294 vf->priv->prefix = strdup(args ? args : "shot"); |
34566
f3d53cd55376
Update deprecated avcodec_alloc_context()/avcodec_open() API calls
siretart
parents:
32537
diff
changeset
|
295 vf->priv->avctx = avcodec_alloc_context3(NULL); |
34659 | 296 vf->priv->avctx->pix_fmt = PIX_FMT_RGB24; |
24731 | 297 avcodec_register_all(); |
35715
8517826b0dbd
Replace CODEC_IDs their modern AV_-prefixed counterparts.
diego
parents:
35712
diff
changeset
|
298 if (avcodec_open2(vf->priv->avctx, avcodec_find_encoder(AV_CODEC_ID_PNG), NULL)) { |
24731 | 299 mp_msg(MSGT_VFILTER, MSGL_FATAL, "Could not open libavcodec PNG encoder\n"); |
300 return 0; | |
301 } | |
16446 | 302 return 1; |
303 } | |
304 | |
305 | |
25221 | 306 const vf_info_t vf_info_screenshot = { |
16446 | 307 "screenshot to file", |
308 "screenshot", | |
309 "A'rpi, Jindrich Makovicka", | |
310 "", | |
30638
a7b908875c14
Rename open() vf initialization function to vf_open().
diego
parents:
30421
diff
changeset
|
311 vf_open, |
16446 | 312 NULL |
313 }; | |
314 | |
315 //===========================================================================// |