File: video.hpp

package info (click to toggle)
videolink 1.2.5-1
  • links: PTS
  • area: contrib
  • in suites: lenny
  • size: 392 kB
  • ctags: 526
  • sloc: cpp: 3,316; ansic: 884; makefile: 127
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