/* display single iframes as stillimages
* iframes can be created with the 'convert' tool from imagemagick
* and mpeg2encode from ftp.mpeg.org, and must have a supported
* size, e.g. 702x576:
* $ convert -sample 702x576\! test.jpg test.mpg
*
* or more advanced using netpbm and mpeg2enc (not mpeg2encode) :
* $ cat image.jpg | jpegtopnm | pnmscale -xsize=704 -ysize=576 |\
* ppmntsc --pal | ppmtoy4m -F 25:1 -A 4:3 -S 420mpeg2 |\
* mpeg2enc -f 7 -T 90 -F 3 -np -a 2 -o "image.mpg"
*
*/
#include <sys/ioctl.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <time.h>
#include <unistd.h>
#include <linux/types.h>
#include <linux/dvb/video.h>
static const char *usage_string = "\n\t"
"usage: %s <still.mpg> [still.mpg ...]\n"
"