File: video.cpp

package info (click to toggle)
videolink 1.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 368 kB
  • ctags: 502
  • sloc: cpp: 3,210; ansic: 880; makefile: 121
file content (20 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "video.hpp"

namespace video
{
    const struct frame_params frame_params_625 =
    {
	"pal",
	720, 576,
	25, 1,
	59, 54
    };

    const struct frame_params frame_params_525 =
    {
	"ntsc",
	720, 480,
	30000, 1001,
	10, 11
    };
}