Mercurial > mplayer.hg
annotate libvo/vo_png.c @ 28311:9cca80350d30
add EPHV to ffodivx,xvid
add T263 to ffh263
add MFZ0 binary codec Moyea Flash to Video Converter
author | compn |
---|---|
date | Tue, 20 Jan 2009 17:20:16 +0000 |
parents | 77c7b422a49d |
children | 7681eab10aea |
rev | line source |
---|---|
527 | 1 /* |
12857 | 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> |
27618 | 14 #include <sys/stat.h> |
15 #include <sys/types.h> | |
16 #include <unistd.h> | |
527 | 17 |
18 #include <png.h> | |
19 | |
26203 | 20 #include "config.h" |
17932 | 21 #include "mp_msg.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
|
22 #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
|
23 #include "help_mp.h" |
527 | 24 #include "video_out.h" |
25 #include "video_out_internal.h" | |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
26 #include "subopt-helper.h" |
27655
710704af0926
Add missing #include for mplayer.h, fixes the warning:
diego
parents:
27618
diff
changeset
|
27 #include "mplayer.h" |
527 | 28 |
27618 | 29 #define BUFLENGTH 512 |
30 | |
25216 | 31 static const vo_info_t info = |
527 | 32 { |
33 "PNG file", | |
34 "png", | |
35 "Felix Buenemann <atmosfear@users.sourceforge.net>", | |
36 "" | |
37 }; | |
38 | |
25220
c9e9ac2008c2
Mark the vo_functions_t definitions as const where possible.
reimar
parents:
25216
diff
changeset
|
39 const LIBVO_EXTERN (png) |
8148
5b39e79af5fe
removed get_info, using the same sheme as in libmpcodecs instead
alex
parents:
7926
diff
changeset
|
40 |
24669 | 41 static int z_compression = Z_NO_COMPRESSION; |
27618 | 42 static char *png_outdir = NULL; |
527 | 43 static int framenum = 0; |
28092
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
44 static int use_alpha; |
527 | 45 |
46 struct pngdata { | |
47 FILE * fp; | |
48 png_structp png_ptr; | |
49 png_infop info_ptr; | |
50 enum {OK,ERROR} status; | |
51 }; | |
3950
e92653caf5d7
osd support, zlib range fix. by Kim Minh Kaplan <kmkaplan@selfoffice.com>
arpi
parents:
2732
diff
changeset
|
52 |
27618 | 53 static void png_mkdir(char *buf, int verbose) { |
54 struct stat stat_p; | |
55 | |
56 #ifndef __MINGW32__ | |
57 if ( mkdir(buf, 0755) < 0 ) { | |
58 #else | |
59 if ( mkdir(buf) < 0 ) { | |
60 #endif | |
61 switch (errno) { /* use switch in case other errors need to be caught | |
62 and handled in the future */ | |
63 case EEXIST: | |
64 if ( stat(buf, &stat_p ) < 0 ) { | |
65 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s: %s\n", info.short_name, | |
66 MSGTR_VO_GenericError, strerror(errno) ); | |
67 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s %s\n", info.short_name, | |
68 MSGTR_VO_UnableToAccess,buf); | |
69 exit_player(MSGTR_Exit_error); | |
70 } | |
71 if ( !S_ISDIR(stat_p.st_mode) ) { | |
72 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s %s\n", info.short_name, | |
73 buf, MSGTR_VO_ExistsButNoDirectory); | |
74 exit_player(MSGTR_Exit_error); | |
75 } | |
76 if ( !(stat_p.st_mode & S_IWUSR) ) { | |
77 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s - %s\n", info.short_name, | |
78 buf, MSGTR_VO_DirExistsButNotWritable); | |
79 exit_player(MSGTR_Exit_error); | |
80 } | |
81 | |
82 mp_msg(MSGT_VO, MSGL_INFO, "%s: %s - %s\n", info.short_name, | |
83 buf, MSGTR_VO_DirExistsAndIsWritable); | |
84 break; | |
85 | |
86 default: | |
87 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s: %s\n", info.short_name, | |
88 MSGTR_VO_GenericError, strerror(errno) ); | |
89 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s - %s\n", info.short_name, | |
90 buf, MSGTR_VO_CantCreateDirectory); | |
91 exit_player(MSGTR_Exit_error); | |
92 } /* end switch */ | |
93 } else if ( verbose ) { | |
94 mp_msg(MSGT_VO, MSGL_INFO, "%s: %s - %s\n", info.short_name, | |
95 buf, MSGTR_VO_DirectoryCreateSuccess); | |
96 } /* end if */ | |
97 } | |
98 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15212
diff
changeset
|
99 static int |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
14451
diff
changeset
|
100 config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format) |
527 | 101 { |
27618 | 102 char buf[BUFLENGTH]; |
527 | 103 |
104 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
|
105 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
|
106 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
|
107 mp_msg(MSGT_VO,MSGL_INFO, MSGTR_LIBVO_PNG_Warning3); |
527 | 108 } |
109 | |
27618 | 110 snprintf(buf, BUFLENGTH, "%s", png_outdir); |
111 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
|
112 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Compression level %i\n", z_compression); |
527 | 113 |
114 return 0; | |
115 } | |
116 | |
117 | |
18950 | 118 static struct pngdata create_png (char * fname, int image_width, int image_height, int swapped) |
527 | 119 { |
120 struct pngdata png; | |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
121 |
527 | 122 /*png_structp png_ptr = png_create_write_struct |
123 (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr, | |
124 user_error_fn, user_warning_fn);*/ | |
125 //png_byte *row_pointers[image_height]; | |
126 png.png_ptr = png_create_write_struct | |
127 (PNG_LIBPNG_VER_STRING, NULL, | |
128 NULL, NULL); | |
129 png.info_ptr = png_create_info_struct(png.png_ptr); | |
130 | |
131 if (!png.png_ptr) { | |
24671
fbcd9dcb0daf
Get rid of mp_msg_test in vo_png, only reason to use it is performance and
reimar
parents:
24670
diff
changeset
|
132 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Failed to init png pointer\n"); |
527 | 133 png.status = ERROR; |
134 return png; | |
135 } | |
136 | |
137 if (!png.info_ptr) { | |
24671
fbcd9dcb0daf
Get rid of mp_msg_test in vo_png, only reason to use it is performance and
reimar
parents:
24670
diff
changeset
|
138 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Failed to init png infopointer\n"); |
527 | 139 png_destroy_write_struct(&png.png_ptr, |
140 (png_infopp)NULL); | |
141 png.status = ERROR; | |
142 return png; | |
143 } | |
144 | |
145 if (setjmp(png.png_ptr->jmpbuf)) { | |
24671
fbcd9dcb0daf
Get rid of mp_msg_test in vo_png, only reason to use it is performance and
reimar
parents:
24670
diff
changeset
|
146 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Internal error!\n"); |
527 | 147 png_destroy_write_struct(&png.png_ptr, &png.info_ptr); |
148 fclose(png.fp); | |
149 png.status = ERROR; | |
150 return png; | |
151 } | |
152 | |
153 png.fp = fopen (fname, "wb"); | |
154 if (png.fp == NULL) { | |
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
|
155 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_PNG_ErrorOpeningForWriting, strerror(errno)); |
527 | 156 png.status = ERROR; |
157 return png; | |
158 } | |
159 | |
24671
fbcd9dcb0daf
Get rid of mp_msg_test in vo_png, only reason to use it is performance and
reimar
parents:
24670
diff
changeset
|
160 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Init IO\n"); |
527 | 161 png_init_io(png.png_ptr, png.fp); |
162 | |
163 /* set the zlib compression level */ | |
164 png_set_compression_level(png.png_ptr, z_compression); | |
165 | |
166 | |
167 /*png_set_IHDR(png_ptr, info_ptr, width, height, | |
168 bit_depth, color_type, interlace_type, | |
169 compression_type, filter_type)*/ | |
170 png_set_IHDR(png.png_ptr, png.info_ptr, image_width, image_height, | |
28092
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
171 8, use_alpha ? PNG_COLOR_TYPE_RGBA : PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE, |
527 | 172 PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT); |
173 | |
24671
fbcd9dcb0daf
Get rid of mp_msg_test in vo_png, only reason to use it is performance and
reimar
parents:
24670
diff
changeset
|
174 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Write Info\n"); |
527 | 175 png_write_info(png.png_ptr, png.info_ptr); |
176 | |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
177 if(swapped) { |
24671
fbcd9dcb0daf
Get rid of mp_msg_test in vo_png, only reason to use it is performance and
reimar
parents:
24670
diff
changeset
|
178 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Set BGR Conversion\n"); |
527 | 179 png_set_bgr(png.png_ptr); |
180 } | |
181 | |
182 png.status = OK; | |
183 return png; | |
184 } | |
185 | |
186 static uint8_t destroy_png(struct pngdata png) { | |
187 | |
24671
fbcd9dcb0daf
Get rid of mp_msg_test in vo_png, only reason to use it is performance and
reimar
parents:
24670
diff
changeset
|
188 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Write End\n"); |
527 | 189 png_write_end(png.png_ptr, png.info_ptr); |
190 | |
24671
fbcd9dcb0daf
Get rid of mp_msg_test in vo_png, only reason to use it is performance and
reimar
parents:
24670
diff
changeset
|
191 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Destroy Write Struct\n"); |
527 | 192 png_destroy_write_struct(&png.png_ptr, &png.info_ptr); |
193 | |
194 fclose (png.fp); | |
195 | |
196 return 0; | |
197 } | |
198 | |
7693 | 199 static uint32_t draw_image(mp_image_t* mpi){ |
527 | 200 char buf[100]; |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
201 int k; |
527 | 202 struct pngdata png; |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
203 png_byte *row_pointers[mpi->h]; |
7693 | 204 |
205 // if -dr or -slices then do nothing: | |
206 if(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK)) return VO_TRUE; | |
527 | 207 |
27618 | 208 snprintf (buf, 100, "%s/%08d.png", png_outdir, ++framenum); |
527 | 209 |
24670
a2599160737c
Use IMGFMT_IS_BGR instead of mpi->flags&MP_IMGFLAG_SWAPPED, this is easier
reimar
parents:
24669
diff
changeset
|
210 png = create_png(buf, mpi->w, mpi->h, IMGFMT_IS_BGR(mpi->imgfmt)); |
527 | 211 |
212 if(png.status){ | |
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
|
213 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_PNG_ErrorInCreatePng); |
527 | 214 return 1; |
215 } | |
216 | |
24671
fbcd9dcb0daf
Get rid of mp_msg_test in vo_png, only reason to use it is performance and
reimar
parents:
24670
diff
changeset
|
217 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Creating Row Pointers\n"); |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
218 for ( k = 0; k < mpi->h; k++ ) |
7693 | 219 row_pointers[k] = mpi->planes[0]+mpi->stride[0]*k; |
220 | |
527 | 221 //png_write_flush(png.png_ptr); |
222 //png_set_flush(png.png_ptr, nrows); | |
223 | |
17932 | 224 if( mp_msg_test(MSGT_VO,MSGL_DBG2) ) { |
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
|
225 mp_msg(MSGT_VO,MSGL_DBG2, "PNG Writing Image Data\n"); } |
527 | 226 png_write_image(png.png_ptr, row_pointers); |
227 | |
7693 | 228 destroy_png(png); |
527 | 229 |
7693 | 230 return VO_TRUE; |
527 | 231 } |
232 | |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
233 static void draw_osd(void){} |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1078
diff
changeset
|
234 |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
235 static void flip_page (void){} |
527 | 236 |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15212
diff
changeset
|
237 static int draw_frame(uint8_t * src[]) |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
238 { |
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
239 return -1; |
527 | 240 } |
241 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15212
diff
changeset
|
242 static int draw_slice( uint8_t *src[],int stride[],int w,int h,int x,int y ) |
527 | 243 { |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
244 return -1; |
527 | 245 } |
246 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15212
diff
changeset
|
247 static int |
527 | 248 query_format(uint32_t format) |
249 { | |
28092
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
250 const int supported_flags = VFCAP_CSP_SUPPORTED|VFCAP_CSP_SUPPORTED_BY_HW|VFCAP_ACCEPT_STRIDE; |
527 | 251 switch(format){ |
27873
80a16d26acda
Use the proper IMGFMT_RGB24 and IMGFMT_BGR24 defines instead of
reimar
parents:
27655
diff
changeset
|
252 case IMGFMT_RGB24: |
80a16d26acda
Use the proper IMGFMT_RGB24 and IMGFMT_BGR24 defines instead of
reimar
parents:
27655
diff
changeset
|
253 case IMGFMT_BGR24: |
28092
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
254 return use_alpha ? 0 : supported_flags; |
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
255 case IMGFMT_RGBA: |
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
256 case IMGFMT_BGRA: |
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
257 return use_alpha ? supported_flags : 0; |
527 | 258 } |
259 return 0; | |
260 } | |
261 | |
27618 | 262 static void uninit(void){ |
263 if (png_outdir) { | |
264 free(png_outdir); | |
265 png_outdir = NULL; | |
266 } | |
267 } | |
527 | 268 |
7926
7d2542838d24
- removed YV12 support (builtin yv12->rgb conversion)
arpi
parents:
7694
diff
changeset
|
269 static void check_events(void){} |
4352 | 270 |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
271 static int int_zero_to_nine(int *sh) |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
272 { |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
273 if ( (*sh < 0) || (*sh > 9) ) |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
274 return 0; |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
275 return 1; |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
276 } |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
277 |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
278 static opt_t subopts[] = { |
28092
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
279 {"alpha", OPT_ARG_BOOL, &use_alpha, NULL, 0}, |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
280 {"z", OPT_ARG_INT, &z_compression, (opt_test_f)int_zero_to_nine}, |
27618 | 281 {"outdir", OPT_ARG_MSTRZ, &png_outdir, NULL, 0}, |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
282 {NULL} |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
283 }; |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
284 |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15212
diff
changeset
|
285 static int preinit(const char *arg) |
4352 | 286 { |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
287 z_compression = 0; |
27618 | 288 png_outdir = strdup("."); |
28092
77c7b422a49d
Add support for writing PNG files with alpha channel in -vo png
reimar
parents:
27873
diff
changeset
|
289 use_alpha = 0; |
14451
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
290 if (subopt_parse(arg, subopts) != 0) { |
4a6f25e88dbb
Implementation of vo_png suboption parser with subopt-helper and removal
ivo
parents:
12857
diff
changeset
|
291 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
|
292 } |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
293 return 0; |
4352 | 294 } |
295 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15212
diff
changeset
|
296 static int control(uint32_t request, void *data, ...) |
4352 | 297 { |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
298 switch (request) { |
7693 | 299 case VOCTRL_DRAW_IMAGE: |
300 return draw_image(data); | |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
301 case VOCTRL_QUERY_FORMAT: |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
302 return query_format(*((uint32_t*)data)); |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
303 } |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
304 return VO_NOTIMPL; |
4352 | 305 } |