File: video.hpp

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 (17 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef INC_VIDEO_HPP
#define INC_VIDEO_HPP

namespace video
{
    struct frame_params
    {
	const char * common_name;
	unsigned int width, height;
	unsigned int rate_numer, rate_denom;
	unsigned int pixel_ratio_width, pixel_ratio_height;
    };

    extern const frame_params frame_params_625, frame_params_525;
}

#endif // !INC_VIDEO_HPP