Merge branch 'master' of http://repo.or.cz/r/FFMpeg-mirror
[FFMpeg-mirror/DVCPRO-HD.git] / vhook / ppm.c
blob6ebfe47524ebf1e0411438240d02012982858948
1 /*
2 * PPM Video Hook
3 * Copyright (c) 2003 Charles Yates
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include <stdio.h>
23 #include <unistd.h>
24 #include <fcntl.h>
25 #include <sys/types.h>
26 #include <sys/wait.h>
27 #include <ctype.h>
28 #include "libavutil/avstring.h"
29 #include "libavformat/framehook.h"
30 #include "libavformat/avformat.h"
31 #include "libswscale/swscale.h"
33 static int sws_flags = SWS_BICUBIC;
35 /** Bi-directional pipe structure.
38 typedef struct rwpipe
40 int pid;
41 FILE *reader;
42 FILE *writer;
44 rwpipe;
46 /** Create a bidirectional pipe for the given command.
49 static rwpipe *rwpipe_open( int argc, char *argv[] )
51 rwpipe *this = av_mallocz( sizeof( rwpipe ) );
53 if ( this != NULL )
55 int input[ 2 ];
56 int output[ 2 ];
58 pipe( input );
59 pipe( output );
61 this->pid = fork();
63 if ( this->pid == 0 )
65 #define COMMAND_SIZE 10240
66 char *command = av_mallocz( COMMAND_SIZE );
67 int i;
69 strcpy( command, "" );
70 for ( i = 0; i < argc; i ++ )
72 av_strlcat( command, argv[ i ], COMMAND_SIZE );
73 av_strlcat( command, " ", COMMAND_SIZE );
76 dup2( output[ 0 ], STDIN_FILENO );
77 dup2( input[ 1 ], STDOUT_FILENO );
79 close( input[ 0 ] );
80 close( input[ 1 ] );
81 close( output[ 0 ] );
82 close( output[ 1 ] );
84 execl("/bin/sh", "sh", "-c", command, (char*)NULL );
85 _exit( 255 );
87 else
89 close( input[ 1 ] );
90 close( output[ 0 ] );
92 this->reader = fdopen( input[ 0 ], "r" );
93 this->writer = fdopen( output[ 1 ], "w" );
97 return this;
100 /** Read data from the pipe.
103 static FILE *rwpipe_reader( rwpipe *this )
105 if ( this != NULL )
106 return this->reader;
107 else
108 return NULL;
111 /** Write data to the pipe.
114 static FILE *rwpipe_writer( rwpipe *this )
116 if ( this != NULL )
117 return this->writer;
118 else
119 return NULL;
122 /* Read a number from the pipe - assumes PNM style headers.
125 static int rwpipe_read_number( rwpipe *rw )
127 int value = 0;
128 int c = 0;
129 FILE *in = rwpipe_reader( rw );
133 c = fgetc( in );
135 while( c != EOF && !isdigit( c ) && c != '#' )
136 c = fgetc( in );
138 if ( c == '#' )
139 while( c != EOF && c != '\n' )
140 c = fgetc( in );
142 while ( c != EOF && !isdigit( c ) );
144 while( c != EOF && isdigit( c ) )
146 value = value * 10 + ( c - '0' );
147 c = fgetc( in );
150 return value;
153 /** Read a PPM P6 header.
156 static int rwpipe_read_ppm_header( rwpipe *rw, int *width, int *height )
158 char line[ 3 ];
159 FILE *in = rwpipe_reader( rw );
160 int max;
162 fgets( line, 3, in );
163 if ( !strncmp( line, "P6", 2 ) )
165 *width = rwpipe_read_number( rw );
166 *height = rwpipe_read_number( rw );
167 max = rwpipe_read_number( rw );
168 return max != 255 || *width <= 0 || *height <= 0;
170 return 1;
173 /** Close the pipe and process.
176 static void rwpipe_close( rwpipe *this )
178 if ( this != NULL )
180 fclose( this->reader );
181 fclose( this->writer );
182 waitpid( this->pid, NULL, 0 );
183 av_free( this );
187 /** Context info for this vhook - stores the pipe and image buffers.
190 typedef struct
192 rwpipe *rw;
193 int size1;
194 char *buf1;
195 int size2;
196 char *buf2;
198 // This vhook first converts frame to RGB ...
199 struct SwsContext *toRGB_convert_ctx;
200 // ... then processes it via a PPM command pipe ...
201 // ... and finally converts back frame from RGB to initial format
202 struct SwsContext *fromRGB_convert_ctx;
204 ContextInfo;
206 /** Initialise the context info for this vhook.
209 int Configure(void **ctxp, int argc, char *argv[])
211 if ( argc > 1 )
213 *ctxp = av_mallocz(sizeof(ContextInfo));
214 if ( ctxp != NULL && argc > 1 )
216 ContextInfo *info = (ContextInfo *)*ctxp;
217 info->rw = rwpipe_open( argc - 1, &argv[ 1 ] );
218 return 0;
221 return 1;
224 /** Process a frame.
227 void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width, int height, int64_t pts)
229 int err = 0;
230 ContextInfo *ci = (ContextInfo *) ctx;
231 AVPicture picture1;
232 AVPicture picture2;
233 AVPicture *pict = picture;
234 int out_width;
235 int out_height;
236 int i;
237 uint8_t *ptr = NULL;
238 FILE *in = rwpipe_reader( ci->rw );
239 FILE *out = rwpipe_writer( ci->rw );
241 /* Check that we have a pipe to talk to. */
242 if ( in == NULL || out == NULL )
243 err = 1;
245 /* Convert to RGB24 if necessary */
246 if ( !err && pix_fmt != PIX_FMT_RGB24 )
248 int size = avpicture_get_size(PIX_FMT_RGB24, width, height);
250 if ( size != ci->size1 )
252 av_free( ci->buf1 );
253 ci->buf1 = av_malloc(size);
254 ci->size1 = size;
255 err = ci->buf1 == NULL;
258 if ( !err )
260 avpicture_fill(&picture1, ci->buf1, PIX_FMT_RGB24, width, height);
262 // if we already got a SWS context, let's realloc if is not re-useable
263 ci->toRGB_convert_ctx = sws_getCachedContext(ci->toRGB_convert_ctx,
264 width, height, pix_fmt,
265 width, height, PIX_FMT_RGB24,
266 sws_flags, NULL, NULL, NULL);
267 if (ci->toRGB_convert_ctx == NULL) {
268 av_log(NULL, AV_LOG_ERROR,
269 "Cannot initialize the toRGB conversion context\n");
270 return;
273 // img_convert parameters are 2 first destination, then 4 source
274 // sws_scale parameters are context, 4 first source, then 2 destination
275 sws_scale(ci->toRGB_convert_ctx,
276 picture->data, picture->linesize, 0, height,
277 picture1.data, picture1.linesize);
279 pict = &picture1;
283 /* Write out the PPM */
284 if ( !err )
286 ptr = pict->data[ 0 ];
287 fprintf( out, "P6\n%d %d\n255\n", width, height );
288 for ( i = 0; !err && i < height; i ++ )
290 err = !fwrite( ptr, width * 3, 1, out );
291 ptr += pict->linesize[ 0 ];
293 if ( !err )
294 err = fflush( out );
297 /* Read the PPM returned. */
298 if ( !err && !rwpipe_read_ppm_header( ci->rw, &out_width, &out_height ) )
300 int size = avpicture_get_size(PIX_FMT_RGB24, out_width, out_height);
302 if ( size != ci->size2 )
304 av_free( ci->buf2 );
305 ci->buf2 = av_malloc(size);
306 ci->size2 = size;
307 err = ci->buf2 == NULL;
310 if ( !err )
312 avpicture_fill(&picture2, ci->buf2, PIX_FMT_RGB24, out_width, out_height);
313 ptr = picture2.data[ 0 ];
314 for ( i = 0; !err && i < out_height; i ++ )
316 err = !fread( ptr, out_width * 3, 1, in );
317 ptr += picture2.linesize[ 0 ];
322 /* Convert the returned PPM back to the input format */
323 if ( !err )
325 /* The out_width/out_height returned from the PPM
326 * filter won't necessarily be the same as width and height
327 * but it will be scaled anyway to width/height.
329 av_log(NULL, AV_LOG_DEBUG,
330 "PPM vhook: Input dimensions: %d x %d Output dimensions: %d x %d\n",
331 width, height, out_width, out_height);
332 ci->fromRGB_convert_ctx = sws_getCachedContext(ci->fromRGB_convert_ctx,
333 out_width, out_height, PIX_FMT_RGB24,
334 width, height, pix_fmt,
335 sws_flags, NULL, NULL, NULL);
336 if (ci->fromRGB_convert_ctx == NULL) {
337 av_log(NULL, AV_LOG_ERROR,
338 "Cannot initialize the fromRGB conversion context\n");
339 return;
342 // img_convert parameters are 2 first destination, then 4 source
343 // sws_scale parameters are context, 4 first source, then 2 destination
344 sws_scale(ci->fromRGB_convert_ctx,
345 picture2.data, picture2.linesize, 0, out_height,
346 picture->data, picture->linesize);
350 /** Clean up the effect.
353 void Release(void *ctx)
355 ContextInfo *ci;
356 ci = (ContextInfo *) ctx;
358 if (ctx)
360 rwpipe_close( ci->rw );
361 av_free( ci->buf1 );
362 av_free( ci->buf2 );
363 sws_freeContext(ci->toRGB_convert_ctx);
364 sws_freeContext(ci->fromRGB_convert_ctx);
365 av_free(ctx);