annotate libvo/vo_jpeg.c @ 26332:762918acfe06

Add missing #includes to pass 'make checkheaders' to codecs.conf.h.
author diego
date Wed, 09 Apr 2008 15:19:55 +0000
parents c9e9ac2008c2
children 2a34d9fa52ab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
1 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
2
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
3 /*
12857
db49cdedb88d embarassing typo
diego
parents: 9989
diff changeset
4 * vo_jpeg.c, JPEG Renderer for MPlayer
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
5 *
25174
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
6 * Copyright (C) 2002 by Pontscho <pontscho@makacs.poliod.hu>
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
7 * Copyright (C) 2003 by Alex
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
8 * Copyright (C) 2004, 2005 by Ivo van Poorten <ivop@euronet.nl>
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
9 *
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
10 * This program is free software; you can redistribute it and/or
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
11 * modify it under the terms of the GNU General Public License
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
12 * as published by the Free Software Foundation; either version 2
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
13 * of the License, or (at your option) any later version.
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
14 *
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
15 * This program is distributed in the hope that it will be useful,
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
18 * GNU General Public License for more details.
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
19 *
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
20 * You should have received a copy of the GNU General Public License
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
21 * along with this program; if not, write to the Free Software
3b78fa30a2b7 Remove redundant changelog from comments
ivo
parents: 18950
diff changeset
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
23 *
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
24 */
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
25
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
26 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
27
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
28 /* Global Includes */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
29
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
30 #include <stdio.h>
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
31 #include <stdlib.h>
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
32 #include <string.h>
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
33 #include <errno.h>
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
34 #include <jpeglib.h>
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
35 #include <sys/stat.h>
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
36 #include <sys/types.h>
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
37 #include <unistd.h>
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
38
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
39 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
40
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
41 /* Local Includes */
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
42
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
43 #include "config.h"
14508
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
44 #include "subopt-helper.h"
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
45 #include "mp_msg.h"
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
46 #include "video_out.h"
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
47 #include "video_out_internal.h"
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
48 #include "mplayer.h" /* for exit_player() */
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
49 #include "help_mp.h"
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
50
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
51 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
52
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
53 /* Defines */
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
54
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
55 /* Used for temporary buffers to store file- and pathnames */
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
56 #define BUFLENGTH 512
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
57
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
58 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
59
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
60 /* Info */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
61
25216
3aee342be929 Make vo info structs const
reimar
parents: 25174
diff changeset
62 static const vo_info_t info=
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
63 {
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
64 "JPEG file",
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
65 "jpeg",
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
66 "Zoltan Ponekker (pontscho@makacs.poliod.hu)",
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
67 ""
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
68 };
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
69
25220
c9e9ac2008c2 Mark the vo_functions_t definitions as const where possible.
reimar
parents: 25216
diff changeset
70 const LIBVO_EXTERN (jpeg)
8148
5b39e79af5fe removed get_info, using the same sheme as in libmpcodecs instead
alex
parents: 7487
diff changeset
71
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
72 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
73
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
74 /* Global Variables */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
75
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
76 static int image_width;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
77 static int image_height;
17436
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
78 static int image_d_width;
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
79 static int image_d_height;
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
80
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
81 int jpeg_baseline = 1;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
82 int jpeg_progressive_mode = 0;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
83 int jpeg_optimize = 100;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
84 int jpeg_smooth = 0;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
85 int jpeg_quality = 75;
17436
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
86 int jpeg_dpi = 72; /** Screen resolution = 72 dpi */
13316
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
87 char *jpeg_outdir = NULL;
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
88 char *jpeg_subdirs = NULL;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
89 int jpeg_maxfiles = 1000;
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
90
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
91 static int framenum = 0;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
92
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
93 /* ------------------------------------------------------------------------- */
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
94
13283
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
95 /** \brief Create a directory.
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
96 *
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
97 * This function creates a directory. If it already exists, it tests if
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
98 * it's a directory and not something else, and if it is, it tests whether
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
99 * the directory is writable or not.
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
100 *
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
101 * \param buf Pointer to directory name.
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
102 * \param verbose Verbose on success. If verbose is non-zero, it will print
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
103 * a message if it was successful in creating the directory.
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
104 *
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
105 * \return nothing In case anything fails, the player will exit. If it
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
106 * returns, everything went well.
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
107 */
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
108
18950
a943bc3f26c8 Make some functions static.
uau
parents: 17436
diff changeset
109 static void jpeg_mkdir(char *buf, int verbose) {
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
110 struct stat stat_p;
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
111
13347
0b4f2d91b27c mingw compile fix
faust3
parents: 13322
diff changeset
112 #ifndef __MINGW32__
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
113 if ( mkdir(buf, 0755) < 0 ) {
13347
0b4f2d91b27c mingw compile fix
faust3
parents: 13322
diff changeset
114 #else
0b4f2d91b27c mingw compile fix
faust3
parents: 13322
diff changeset
115 if ( mkdir(buf) < 0 ) {
0b4f2d91b27c mingw compile fix
faust3
parents: 13322
diff changeset
116 #endif
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
117 switch (errno) { /* use switch in case other errors need to be caught
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
118 and handled in the future */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
119 case EEXIST:
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
120 if ( stat(buf, &stat_p ) < 0 ) {
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
121 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s: %s\n", info.short_name,
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
122 MSGTR_VO_GenericError, strerror(errno) );
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
123 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s %s\n", info.short_name,
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
124 MSGTR_VO_UnableToAccess,buf);
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
125 exit_player(MSGTR_Exit_error);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
126 }
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
127 if ( !S_ISDIR(stat_p.st_mode) ) {
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
128 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s %s\n", info.short_name,
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
129 buf, MSGTR_VO_ExistsButNoDirectory);
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
130 exit_player(MSGTR_Exit_error);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
131 }
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
132 if ( !(stat_p.st_mode & S_IWUSR) ) {
13283
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
133 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s - %s\n", info.short_name,
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
134 buf, MSGTR_VO_DirExistsButNotWritable);
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
135 exit_player(MSGTR_Exit_error);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
136 }
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
137
13283
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
138 mp_msg(MSGT_VO, MSGL_INFO, "%s: %s - %s\n", info.short_name,
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
139 buf, MSGTR_VO_DirExistsAndIsWritable);
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
140 break;
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
141
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
142 default:
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
143 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s: %s\n", info.short_name,
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
144 MSGTR_VO_GenericError, strerror(errno) );
13283
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
145 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s - %s\n", info.short_name,
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
146 buf, MSGTR_VO_CantCreateDirectory);
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
147 exit_player(MSGTR_Exit_error);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
148 } /* end switch */
13283
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
149 } else if ( verbose ) {
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
150 mp_msg(MSGT_VO, MSGL_INFO, "%s: %s - %s\n", info.short_name,
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
151 buf, MSGTR_VO_DirectoryCreateSuccess);
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
152 } /* end if */
13283
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
153 }
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
154
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
155 /* ------------------------------------------------------------------------- */
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
156
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
157 static int config(uint32_t width, uint32_t height, uint32_t d_width,
15212
05aa13cdf92f replace VO and VF numeric flags with #defined identifiers
henry
parents: 14850
diff changeset
158 uint32_t d_height, uint32_t flags, char *title,
13283
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
159 uint32_t format)
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
160 {
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
161 char buf[BUFLENGTH];
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
162
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
163 /* Create outdir. */
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
164
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
165 snprintf(buf, BUFLENGTH, "%s", jpeg_outdir);
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
166
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
167 jpeg_mkdir(buf, 1); /* This function only returns if creation was
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
168 successful. If not, the player will exit. */
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
169
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
170 image_height = height;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
171 image_width = width;
17436
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
172 /* Save for JFIF-Header PAR */
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
173 image_d_width = d_width;
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
174 image_d_height = d_height;
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
175
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
176 return 0;
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
177 }
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
178
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
179 /* ------------------------------------------------------------------------- */
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
180
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
181 static uint32_t jpeg_write(uint8_t * name, uint8_t * buffer)
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
182 {
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
183 FILE *outfile;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
184 struct jpeg_compress_struct cinfo;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
185 struct jpeg_error_mgr jerr;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
186 JSAMPROW row_pointer[1];
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
187 int row_stride;
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
188
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
189 if ( !buffer ) return 1;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
190 if ( (outfile = fopen(name, "wb") ) == NULL ) {
13252
7dfd84faaa09 Some minor vo_jpeg fixes:
ivo
parents: 13247
diff changeset
191 mp_msg(MSGT_VO, MSGL_ERR, "\n%s: %s\n", info.short_name,
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
192 MSGTR_VO_CantCreateFile);
13252
7dfd84faaa09 Some minor vo_jpeg fixes:
ivo
parents: 13247
diff changeset
193 mp_msg(MSGT_VO, MSGL_ERR, "%s: %s: %s\n",
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
194 info.short_name, MSGTR_VO_GenericError,
13252
7dfd84faaa09 Some minor vo_jpeg fixes:
ivo
parents: 13247
diff changeset
195 strerror(errno) );
7dfd84faaa09 Some minor vo_jpeg fixes:
ivo
parents: 13247
diff changeset
196 exit_player(MSGTR_Exit_error);
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
197 }
8267
1ac2523775ad patch from tonglijing <tong@intec.iscas.ac.cn>
pontscho
parents: 8148
diff changeset
198
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
199 cinfo.err = jpeg_std_error(&jerr);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
200 jpeg_create_compress(&cinfo);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
201 jpeg_stdio_dest(&cinfo, outfile);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
202
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
203 cinfo.image_width = image_width;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
204 cinfo.image_height = image_height;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
205 cinfo.input_components = 3;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
206 cinfo.in_color_space = JCS_RGB;
17436
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
207
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
208 jpeg_set_defaults(&cinfo);
17436
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
209 /* Important: Header info must be set AFTER jpeg_set_defaults() */
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
210 cinfo.write_JFIF_header = TRUE;
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
211 cinfo.JFIF_major_version = 1;
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
212 cinfo.JFIF_minor_version = 2;
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
213 cinfo.density_unit = 1; /* 0=unknown, 1=dpi, 2=dpcm */
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
214 /* Image DPI is determined by Y_density, so we leave that at
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
215 jpeg_dpi if possible and crunch X_density instead (PAR > 1) */
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
216 cinfo.X_density = jpeg_dpi*image_width/image_d_width;
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
217 cinfo.Y_density = jpeg_dpi*image_height/image_d_height;
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
218 cinfo.write_Adobe_marker = TRUE;
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
219
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
220 jpeg_set_quality(&cinfo,jpeg_quality, jpeg_baseline);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
221 cinfo.optimize_coding = jpeg_optimize;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
222 cinfo.smoothing_factor = jpeg_smooth;
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
223
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
224 if ( jpeg_progressive_mode ) {
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
225 jpeg_simple_progression(&cinfo);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
226 }
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
227
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
228 jpeg_start_compress(&cinfo, TRUE);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
229
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
230 row_stride = image_width * 3;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
231 while (cinfo.next_scanline < cinfo.image_height) {
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
232 row_pointer[0] = &buffer[cinfo.next_scanline * row_stride];
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
233 (void)jpeg_write_scanlines(&cinfo, row_pointer,1);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
234 }
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
235
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
236 jpeg_finish_compress(&cinfo);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
237 fclose(outfile);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
238 jpeg_destroy_compress(&cinfo);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
239
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
240 return 0;
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
241 }
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
242
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
243 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
244
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
245 static int draw_frame(uint8_t *src[])
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
246 {
14850
ba555409718b Fix compile warnings
ivo
parents: 14847
diff changeset
247 static int framecounter = 0, subdircounter = 0;
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
248 char buf[BUFLENGTH];
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
249 static char subdirname[BUFLENGTH] = "";
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
250
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
251 /* Start writing to new subdirectory after a certain amount of frames */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
252 if ( framecounter == jpeg_maxfiles ) {
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
253 framecounter = 0;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
254 }
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
255
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
256 /* If framecounter is zero (or reset to zero), increment subdirectory
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
257 * number and create the subdirectory.
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
258 * If jpeg_subdirs is not set, do nothing and resort to old behaviour. */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
259 if ( !framecounter && jpeg_subdirs ) {
13300
47dd02fb02df Removed unused variable (leftover of having two instances of directory creation
ivo
parents: 13284
diff changeset
260 subdircounter++;
47dd02fb02df Removed unused variable (leftover of having two instances of directory creation
ivo
parents: 13284
diff changeset
261 snprintf(subdirname, BUFLENGTH, "%s%08d", jpeg_subdirs, subdircounter);
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
262 snprintf(buf, BUFLENGTH, "%s/%s", jpeg_outdir, subdirname);
13283
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
263 jpeg_mkdir(buf, 0); /* This function only returns if creation was
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
264 successful. If not, the player will exit. */
858b7e04718c This patch moves the directory creation code to a separate function. I have
ivo
parents: 13252
diff changeset
265 }
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
266
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
267 framenum++;
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
268
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
269 /* snprintf the full pathname of the outputfile */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
270 snprintf(buf, BUFLENGTH, "%s/%s/%08d.jpg", jpeg_outdir, subdirname,
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
271 framenum);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
272
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
273 framecounter++;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
274
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
275 return jpeg_write(buf, src[0]);
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
276 }
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
277
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
278 /* ------------------------------------------------------------------------- */
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
279
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
280 static void draw_osd(void)
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
281 {
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
282 }
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
283
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
284 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
285
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
286 static void flip_page (void)
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
287 {
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
288 }
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
289
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
290 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
291
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
292 static int draw_slice(uint8_t *src[], int stride[], int w, int h,
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
293 int x, int y)
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
294 {
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
295 return 0;
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
296 }
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
297
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
298 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
299
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
300 static int query_format(uint32_t format)
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
301 {
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
302 if (format == IMGFMT_RGB24) {
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
303 return VFCAP_CSP_SUPPORTED|VFCAP_CSP_SUPPORTED_BY_HW;
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
304 }
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
305
9989
98791b90215a Spring cleanup: supporting only RGB24 as input (native jpeg lib supports only that, maybe we could later add nativ YCbCr (YUV) support, but not swscale ones)
alex
parents: 9019
diff changeset
306 return 0;
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
307 }
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
308
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
309 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
310
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
311 static void uninit(void)
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
312 {
13316
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
313 if (jpeg_subdirs) {
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
314 free(jpeg_subdirs);
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
315 jpeg_subdirs = NULL;
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
316 }
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
317 if (jpeg_outdir) {
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
318 free(jpeg_outdir);
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
319 jpeg_outdir = NULL;
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
320 }
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
321 }
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
322
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
323 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
324
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
325 static void check_events(void)
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
326 {
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
327 }
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
328
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
329 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
330
14508
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
331 /** \brief Validation function for values [0-100]
13316
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
332 */
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
333
14508
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
334 static int int_zero_hundred(int *val)
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
335 {
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
336 if ( (*val >=0) && (*val<=100) )
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
337 return 1;
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
338 return 0;
13316
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
339 }
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
340
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
341 static int preinit(const char *arg)
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
342 {
14508
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
343 opt_t subopts[] = {
14850
ba555409718b Fix compile warnings
ivo
parents: 14847
diff changeset
344 {"progressive", OPT_ARG_BOOL, &jpeg_progressive_mode, NULL, 0},
ba555409718b Fix compile warnings
ivo
parents: 14847
diff changeset
345 {"baseline", OPT_ARG_BOOL, &jpeg_baseline, NULL, 0},
14508
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
346 {"optimize", OPT_ARG_INT, &jpeg_optimize,
14850
ba555409718b Fix compile warnings
ivo
parents: 14847
diff changeset
347 (opt_test_f)int_zero_hundred, 0},
14508
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
348 {"smooth", OPT_ARG_INT, &jpeg_smooth,
14850
ba555409718b Fix compile warnings
ivo
parents: 14847
diff changeset
349 (opt_test_f)int_zero_hundred, 0},
14508
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
350 {"quality", OPT_ARG_INT, &jpeg_quality,
14850
ba555409718b Fix compile warnings
ivo
parents: 14847
diff changeset
351 (opt_test_f)int_zero_hundred, 0},
17436
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
352 {"dpi", OPT_ARG_INT, &jpeg_dpi, NULL, 0},
14850
ba555409718b Fix compile warnings
ivo
parents: 14847
diff changeset
353 {"outdir", OPT_ARG_MSTRZ, &jpeg_outdir, NULL, 0},
ba555409718b Fix compile warnings
ivo
parents: 14847
diff changeset
354 {"subdirs", OPT_ARG_MSTRZ, &jpeg_subdirs, NULL, 0},
ba555409718b Fix compile warnings
ivo
parents: 14847
diff changeset
355 {"maxfiles", OPT_ARG_INT, &jpeg_maxfiles, (opt_test_f)int_pos, 0},
ba555409718b Fix compile warnings
ivo
parents: 14847
diff changeset
356 {NULL, 0, NULL, NULL, 0}
14508
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
357 };
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
358 const char *info_message = NULL;
13247
933b45ad31d5 Removal of -jpeg commandline option.
ivo
parents: 13217
diff changeset
359
933b45ad31d5 Removal of -jpeg commandline option.
ivo
parents: 13217
diff changeset
360 mp_msg(MSGT_VO, MSGL_INFO, "%s: %s\n", info.short_name,
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
361 MSGTR_VO_ParsingSuboptions);
14508
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
362
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
363 jpeg_progressive_mode = 0;
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
364 jpeg_baseline = 1;
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
365 jpeg_optimize = 100;
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
366 jpeg_smooth = 0;
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
367 jpeg_quality = 75;
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
368 jpeg_maxfiles = 1000;
14538
00c3c4111017 New suboption type: malloc'ed, zero terminated string
reimar
parents: 14508
diff changeset
369 jpeg_outdir = strdup(".");
00c3c4111017 New suboption type: malloc'ed, zero terminated string
reimar
parents: 14508
diff changeset
370 jpeg_subdirs = NULL;
14508
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
371
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
372 if (subopt_parse(arg, subopts) != 0) {
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
373 return -1;
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
374 }
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
375
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
376 if (jpeg_progressive_mode) info_message = MSGTR_VO_JPEG_ProgressiveJPEG;
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
377 else info_message = MSGTR_VO_JPEG_NoProgressiveJPEG;
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
378 mp_msg(MSGT_VO, MSGL_INFO, "%s: %s\n", info.short_name, info_message);
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
379
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
380 if (jpeg_baseline) info_message = MSGTR_VO_JPEG_BaselineJPEG;
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
381 else info_message = MSGTR_VO_JPEG_NoBaselineJPEG;
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
382 mp_msg(MSGT_VO, MSGL_INFO, "%s: %s\n", info.short_name, info_message);
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
383
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
384 mp_msg(MSGT_VO, MSGL_V, "%s: optimize --> %d\n", info.short_name,
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
385 jpeg_optimize);
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
386 mp_msg(MSGT_VO, MSGL_V, "%s: smooth --> %d\n", info.short_name,
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
387 jpeg_smooth);
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
388 mp_msg(MSGT_VO, MSGL_V, "%s: quality --> %d\n", info.short_name,
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
389 jpeg_quality);
17436
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
390 mp_msg(MSGT_VO, MSGL_V, "%s: dpi --> %d\n", info.short_name,
2ab8452b8ce4 Added DPI (Print-Resolution) and Pixel-Aspect awareness to vo_jpeg.
atmos4
parents: 16171
diff changeset
391 jpeg_dpi);
14508
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
392 mp_msg(MSGT_VO, MSGL_V, "%s: outdir --> %s\n", info.short_name,
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
393 jpeg_outdir);
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
394 if (jpeg_subdirs) {
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
395 mp_msg(MSGT_VO, MSGL_V, "%s: subdirs --> %s\n", info.short_name,
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
396 jpeg_subdirs);
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
397 mp_msg(MSGT_VO, MSGL_V, "%s: maxfiles --> %d\n", info.short_name,
3673ad04ebfb Replaced suboption parser by call to suboption helper.
ivo
parents: 13347
diff changeset
398 jpeg_maxfiles);
13316
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
399 }
0d17bef9894d * Changed malloc and strncpy to strdup. Less code.
ivo
parents: 13300
diff changeset
400
13247
933b45ad31d5 Removal of -jpeg commandline option.
ivo
parents: 13217
diff changeset
401 mp_msg(MSGT_VO, MSGL_INFO, "%s: %s\n", info.short_name,
13284
6370626e902b Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
ivo
parents: 13283
diff changeset
402 MSGTR_VO_SuboptionsParsedOK);
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
403 return 0;
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
404 }
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
405
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
406 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
407
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
408 static int control(uint32_t request, void *data, ...)
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
409 {
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
410 switch (request) {
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
411 case VOCTRL_QUERY_FORMAT:
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
412 return query_format(*((uint32_t*)data));
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
413 }
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
414 return VO_NOTIMPL;
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents:
diff changeset
415 }
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
416
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
417 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
418
13158
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
419 #undef BUFLENGTH
b872a27aea9e Added output to multiple directories for vo_jpeg.
ivo
parents: 12857
diff changeset
420
13217
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
421 /* ------------------------------------------------------------------------- */
43fe55f36522 One-time cosmetics update.
ivo
parents: 13158
diff changeset
422