Mercurial > mplayer.hg
annotate libvo/vo_png.c @ 36508:449868d26489
vo_bl: Do memory allocation only in one place.
This avoids duplicating code.
author | reimar |
---|---|
date | Sat, 18 Jan 2014 13:43:10 +0000 |
parents | cd83754e4f3a |
children | 5d3f93051de9 |
rev | line source |
---|---|
28446
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
1 /* |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
2 * Portable Network Graphics renderer |
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 * |
28446
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
8 * This file is part of MPlayer. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
9 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
10 * MPlayer is free software; you can redistribute it and/or modify |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
11 * it under the terms of the GNU General Public License as published by |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
12 * the Free Software Foundation; either version 2 of the License, or |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
13 * (at your option) any later version. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
14 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
15 * MPlayer is distributed in the hope that it will be useful, |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
18 * GNU General Public License for more details. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
19 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
20 * You should have received a copy of the GNU General Public License along |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
21 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28092
diff
changeset
|
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
527 | 23 */ |
24 | |
25 #include <stdio.h> | |
26 #include <stdlib.h> | |
27 #include <string.h> | |
612 | 28 #include <errno.h> |
27618 | 29 #include <sys/stat.h> |
30 #include <sys/types.h> | |
31 #include <unistd.h> | |
527 | 32 |
26203 | 33 #include "config.h" |
30427 | 34 #include "fmt-conversion.h" |
30516 | 35 #include "mp_core.h" |
18234
a107276371a8
Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
parents:
17932
diff
changeset
|
36 #include "mp_msg.h" |
a107276371a8
Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
parents:
17932
diff
changeset
|
37 #include "help_mp.h" |
527 | 38 #include "video_out.h" |
39 #include "video_out_internal.h" | |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
40 #include "subopt-helper.h" |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
41 #include "libavcodec/avcodec.h" |
527 | 42 |
27618 | 43 #define BUFLENGTH 512 |
44 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
45 static const vo_info_t info = |
527 | 46 { |
47 "PNG file", | |
48 "png", | |
49 "Felix Buenemann <atmosfear@users.sourceforge.net>", | |
50 "" | |
51 }; | |
52 | |
25220
c9e9ac2008c2
Mark the vo_functions_t definitions as const where possible.
reimar
parents:
25216
diff
changeset
|
53 const LIBVO_EXTERN (png) |
8148
5b39e79af5fe
removed get_info, using the same sheme as in libmpcodecs instead
alex
parents:
7926
diff
changeset
|
54 |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
55 static int z_compression; |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
56 static char *png_outdir; |
32755 | 57 static char *png_outfile_prefix; |
34635 | 58 static uint32_t png_format; |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
59 static int framenum; |
28092
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
60 static int use_alpha; |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
61 static AVCodecContext *avctx; |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
62 static uint8_t *outbuffer; |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
63 int outbuffer_size; |
3950
e92653caf5d7
osd support, zlib range fix. by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
2732
diff
changeset
|
64 |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
65 static void png_mkdir(char *buf, int verbose) { |
27618 | 66 struct stat stat_p; |
67 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
68 #ifndef __MINGW32__ |
27618 | 69 if ( mkdir(buf, 0755) < 0 ) { |
70 #else | |
71 if ( mkdir(buf) < 0 ) { | |
72 #endif | |
73 switch (errno) { /* use switch in case other errors need to be caught | |
74 and handled in the future */ | |
75 case EEXIST: | |
76 if ( stat(buf, &stat_p ) < 0 ) { | |
77 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s: %s\n", info.short_name, | |
78 MSGTR_VO_GenericError, strerror(errno) ); | |
79 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s %s\n", info.short_name, | |
80 MSGTR_VO_UnableToAccess,buf); | |
30516 | 81 exit_player(EXIT_ERROR); |
27618 | 82 } |
83 if ( !S_ISDIR(stat_p.st_mode) ) { | |
84 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s %s\n", info.short_name, | |
85 buf, MSGTR_VO_ExistsButNoDirectory); | |
30516 | 86 exit_player(EXIT_ERROR); |
27618 | 87 } |
88 if ( !(stat_p.st_mode & S_IWUSR) ) { | |
89 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s - %s\n", info.short_name, | |
90 buf, MSGTR_VO_DirExistsButNotWritable); | |
30516 | 91 exit_player(EXIT_ERROR); |
27618 | 92 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
93 |
36374
cd83754e4f3a
vo jpeg, png, pnm: Make output directory message less confusing
al
parents:
36328
diff
changeset
|
94 mp_msg(MSGT_VO, MSGL_INFO, "%s: %s: %s\n", info.short_name, MSGTR_VO_OutputDirectory, buf); |
27618 | 95 break; |
96 | |
97 default: | |
98 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s: %s\n", info.short_name, | |
99 MSGTR_VO_GenericError, strerror(errno) ); | |
100 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s - %s\n", info.short_name, | |
101 buf, MSGTR_VO_CantCreateDirectory); | |
30516 | 102 exit_player(EXIT_ERROR); |
27618 | 103 } /* end switch */ |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
104 } else if ( verbose ) { |
27618 | 105 mp_msg(MSGT_VO, MSGL_INFO, "%s: %s - %s\n", info.short_name, |
106 buf, MSGTR_VO_DirectoryCreateSuccess); | |
107 } /* end if */ | |
108 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
109 |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15212
diff
changeset
|
110 static int |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
14451
diff
changeset
|
111 config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format) |
527 | 112 { |
27618 | 113 char buf[BUFLENGTH]; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
114 |
527 | 115 if(z_compression == 0) { |
18234
a107276371a8
Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
parents:
17932
diff
changeset
|
116 mp_msg(MSGT_VO,MSGL_INFO, MSGTR_LIBVO_PNG_Warning1); |
a107276371a8
Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
parents:
17932
diff
changeset
|
117 mp_msg(MSGT_VO,MSGL_INFO, MSGTR_LIBVO_PNG_Warning2); |
a107276371a8
Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
parents:
17932
diff
changeset
|
118 mp_msg(MSGT_VO,MSGL_INFO, MSGTR_LIBVO_PNG_Warning3); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
119 } |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
120 |
27618 | 121 snprintf(buf, BUFLENGTH, "%s", png_outdir); |
122 png_mkdir(buf, 1); | |
24671
fbcd9dcb0daf
Get rid of mp_msg_test in vo_png, only reason to use it is performance and
reimar
parents:
24670
diff
changeset
|
123 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Compression level %i\n", z_compression); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
124 |
34635 | 125 |
126 if (avctx && png_format != format) { | |
127 avcodec_close(avctx); | |
128 av_freep(&avctx); | |
129 } | |
130 | |
131 if (!avctx) { | |
132 avctx = avcodec_alloc_context3(NULL); | |
133 avctx->compression_level = z_compression; | |
134 avctx->pix_fmt = imgfmt2pixfmt(format); | |
35715
8517826b0dbd
Replace CODEC_IDs their modern AV_-prefixed counterparts.
diego
parents:
34804
diff
changeset
|
135 if (avcodec_open2(avctx, avcodec_find_encoder(AV_CODEC_ID_PNG), NULL) < 0) { |
34635 | 136 uninit(); |
137 return -1; | |
138 } | |
139 png_format = format; | |
140 } | |
527 | 141 return 0; |
142 } | |
143 | |
144 | |
7693 | 145 static uint32_t draw_image(mp_image_t* mpi){ |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
146 AVFrame pic; |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
147 int buffersize; |
36327 | 148 int res, got_pkt; |
527 | 149 char buf[100]; |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
150 FILE *outfile; |
36327 | 151 AVPacket pkt; |
7693 | 152 |
153 // if -dr or -slices then do nothing: | |
154 if(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK)) return VO_TRUE; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
155 |
32755 | 156 snprintf (buf, 100, "%s/%s%08d.png", png_outdir, png_outfile_prefix, ++framenum); |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
157 outfile = fopen(buf, "wb"); |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
158 if (!outfile) { |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
159 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_PNG_ErrorOpeningForWriting, strerror(errno)); |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
160 return 1; |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
161 } |
527 | 162 |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
163 avctx->width = mpi->w; |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
164 avctx->height = mpi->h; |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
165 pic.data[0] = mpi->planes[0]; |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
166 pic.linesize[0] = mpi->stride[0]; |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
167 buffersize = mpi->w * mpi->h * 8; |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
168 if (outbuffer_size < buffersize) { |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
169 av_freep(&outbuffer); |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
170 outbuffer = av_malloc(buffersize); |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
171 outbuffer_size = buffersize; |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
172 } |
36327 | 173 av_init_packet(&pkt); |
174 pkt.data = outbuffer; | |
175 pkt.size = outbuffer_size; | |
176 res = avcodec_encode_video2(avctx, &pkt, &pic, &got_pkt); | |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
177 |
36328 | 178 if (res < 0 || !got_pkt) { |
18234
a107276371a8
Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
parents:
17932
diff
changeset
|
179 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_PNG_ErrorInCreatePng); |
36328 | 180 } else { |
181 fwrite(outbuffer, pkt.size, 1, outfile); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28922
diff
changeset
|
182 } |
527 | 183 |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
184 fclose(outfile); |
36328 | 185 av_free_packet(&pkt); |
527 | 186 |
7693 | 187 return VO_TRUE; |
527 | 188 } |
189 | |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
190 static void draw_osd(void){} |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1078
diff
changeset
|
191 |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
192 static void flip_page (void){} |
527 | 193 |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15212
diff
changeset
|
194 static int draw_frame(uint8_t * src[]) |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
195 { |
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
196 return -1; |
527 | 197 } |
198 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15212
diff
changeset
|
199 static int draw_slice( uint8_t *src[],int stride[],int w,int h,int x,int y ) |
527 | 200 { |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
201 return -1; |
527 | 202 } |
203 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15212
diff
changeset
|
204 static int |
527 | 205 query_format(uint32_t format) |
206 { | |
28092
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
207 const int supported_flags = VFCAP_CSP_SUPPORTED|VFCAP_CSP_SUPPORTED_BY_HW|VFCAP_ACCEPT_STRIDE; |
527 | 208 switch(format){ |
27873
80a16d26acda
Use the proper IMGFMT_RGB24 and IMGFMT_BGR24 defines instead of
reimar
parents:
27655
diff
changeset
|
209 case IMGFMT_RGB24: |
28092
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
210 return use_alpha ? 0 : supported_flags; |
34804 | 211 case IMGFMT_RGBA: |
28092
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
212 return use_alpha ? supported_flags : 0; |
527 | 213 } |
214 return 0; | |
215 } | |
216 | |
27618 | 217 static void uninit(void){ |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
218 avcodec_close(avctx); |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
219 av_freep(&avctx); |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
220 av_freep(&outbuffer); |
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
221 outbuffer_size = 0; |
32537
8fa2f43cb760
Remove most of the NULL pointer check before free all over the code
cboesch
parents:
30516
diff
changeset
|
222 free(png_outdir); |
8fa2f43cb760
Remove most of the NULL pointer check before free all over the code
cboesch
parents:
30516
diff
changeset
|
223 png_outdir = NULL; |
32755 | 224 free(png_outfile_prefix); |
225 png_outfile_prefix = NULL; | |
27618 | 226 } |
527 | 227 |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
228 static void check_events(void){} |
4352 | 229 |
30122
1772a5171ac7
Fix function declarations to avoid casting function pointers.
reimar
parents:
29263
diff
changeset
|
230 static int int_zero_to_nine(void *value) |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
231 { |
30122
1772a5171ac7
Fix function declarations to avoid casting function pointers.
reimar
parents:
29263
diff
changeset
|
232 int *sh = value; |
30123
0f5f75b4a015
Simplify range-checking functions for subopt parsing.
reimar
parents:
30122
diff
changeset
|
233 return *sh >= 0 && *sh <= 9; |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
234 } |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
235 |
28828
56eee6ffba9b
Make data related to suboption parsing const in libvo
reimar
parents:
28446
diff
changeset
|
236 static const opt_t subopts[] = { |
28922
9dd905e52639
Remove obsolete extra elements from opt_t struct initialization.
diego
parents:
28828
diff
changeset
|
237 {"alpha", OPT_ARG_BOOL, &use_alpha, NULL}, |
30122
1772a5171ac7
Fix function declarations to avoid casting function pointers.
reimar
parents:
29263
diff
changeset
|
238 {"z", OPT_ARG_INT, &z_compression, int_zero_to_nine}, |
28922
9dd905e52639
Remove obsolete extra elements from opt_t struct initialization.
diego
parents:
28828
diff
changeset
|
239 {"outdir", OPT_ARG_MSTRZ, &png_outdir, NULL}, |
32755 | 240 {"prefix", OPT_ARG_MSTRZ, &png_outfile_prefix, NULL }, |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
241 {NULL} |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
242 }; |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
243 |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15212
diff
changeset
|
244 static int preinit(const char *arg) |
4352 | 245 { |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
246 z_compression = 0; |
27618 | 247 png_outdir = strdup("."); |
32755 | 248 png_outfile_prefix = strdup(""); |
28092
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
249 use_alpha = 0; |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
250 if (subopt_parse(arg, subopts) != 0) { |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
251 return -1; |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
252 } |
30144
0a92a14ced38
Change vo_png to use FFmpeg's png encoder instead of libpng.
reimar
parents:
30123
diff
changeset
|
253 avcodec_register_all(); |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
254 return 0; |
4352 | 255 } |
256 | |
33305
ddb45e9443ec
Remove the variable arguments from the libvo control() functions.
iive
parents:
32755
diff
changeset
|
257 static int control(uint32_t request, void *data) |
4352 | 258 { |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
259 switch (request) { |
7693 | 260 case VOCTRL_DRAW_IMAGE: |
261 return draw_image(data); | |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
262 case VOCTRL_QUERY_FORMAT: |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
263 return query_format(*((uint32_t*)data)); |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
264 } |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
265 return VO_NOTIMPL; |
4352 | 266 } |