aboutsummaryrefslogtreecommitdiffstats
path: root/util/scan/dvb-t/uk-WinterHill
blob: 3ea6abd299343f15b03dad47faf8d3d1225ab895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# UK, Winter Hill
# Auto-generated from http://www.dtg.org.uk/retailer/dtt_channels.html
# and http://www.ofcom.org.uk/static/reception_advice/index.asp.html
# T freq bw fec_hi fec_lo mod transmission-mode guard-interval hierarchy
T 754167000 8MHz 3/4 NONE QAM16 2k 1/32 NONE
T 834167000 8MHz 2/3 NONE QAM64 2k 1/32 NONE
T 850167000 8MHz 2/3 NONE QAM64 2k 1/32 NONE
T 842167000 8MHz 3/4 NONE QAM16 2k 1/32 NONE
T 786167000 8MHz 3/4 NONE QAM16 2k 1/32 NONE
T 810167000 8MHz 3/4 NONE QAM16 2k 1/32 NONE
# UK, Winter Hill B
T 650000000 8MHz 3/4 NONE QAM16 2k 1/32 NONE
T 626000000 8MHz 3/4 NONE QAM16 2k 1/32 NONE
Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/* 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"
	"\n\t"
	"to use another videodev than the first, set the environment variable VIDEODEV\n\t"
	"e.g.[user@linux]$ export VIDEODEV=\"/dev/dvb/adapter1/video1\".\n\t"
	"to display the image <n> seconds, instead of 10, set the variable SSTIME\n\t"
	"e.g. [user@linux]$ export SSTIME=\"60\" to display the still for 1 minute.\n\t"
	"this options can be set in the same line as the %s command:\n\t"
	"e.g. $ SSTIME=25 VIDEODEV=/dev/dvb/adapter1/video1 %s ...\n";


int main (int argc, char **argv)
{
	int fd;
	int filefd;
	struct stat st;
	struct video_still_picture sp;
	char *videodev = "/dev/dvb/adapter0/video0";
	char *env_sstime;
	int i = 1;
	int tsec = 10;

	if (argc < 2) {
		fprintf (stderr, usage_string, argv[0],argv[0],argv[0]);
		return -1;
	}

	if (getenv ("VIDEODEV"))
		videodev = getenv("VIDEODEV");

	if (getenv ("SSTIME")) {
		env_sstime = getenv("SSTIME");
		tsec = atoi(env_sstime);
	}

	if ((fd = open(videodev, O_RDWR)) < 0) {
		perror(videodev);
		return -1;
	}

next_pic:
	printf("I-frame     : '%s'\n", argv[i]);
	if ((filefd = open(argv[i], O_RDONLY)) < 0) {
		perror(argv[i]);
		return -1;
	}

	fstat(filefd, &st);

	sp.iFrame = (char *) malloc (st.st_size);
	sp.size = st.st_size;
	printf("I-frame size: %d\n", sp.size);

	if (!sp.iFrame) {
		fprintf (stderr, "No memory for I-Frame\n");
		return -1;
	}

	printf ("read: %d bytes\n", (int) read(filefd, sp.iFrame, sp.size));
	close(filefd);

	if ((ioctl(fd, VIDEO_STILLPICTURE, &sp) < 0)) {
		perror("ioctl VIDEO_STILLPICTURE");
		return -1;
	}
	free(sp.iFrame);

	printf("Display image %d seconds ...\n",tsec);
	sleep(tsec);
	printf("Done.\n");
	if (argc > ++i)
		goto next_pic;

	return 0;
}