stereoplay

annotate src/vid.h @ 5:ba7d221f6725

makefile modification
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 03 Nov 2011 22:01:01 +0200
parents 265a24704ff2
children
rev   line source
nuclear@4 1 /*
nuclear@4 2 Stereoplay - an OpenGL stereoscopic video player.
nuclear@4 3 Copyright (C) 2011 John Tsiombikas <nuclear@member.fsf.org>
nuclear@4 4
nuclear@4 5 This program is free software: you can redistribute it and/or modify
nuclear@4 6 it under the terms of the GNU General Public License as published by
nuclear@4 7 the Free Software Foundation, either version 3 of the License, or
nuclear@4 8 (at your option) any later version.
nuclear@4 9
nuclear@4 10 This program is distributed in the hope that it will be useful,
nuclear@4 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
nuclear@4 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
nuclear@4 13 GNU General Public License for more details.
nuclear@4 14
nuclear@4 15 You should have received a copy of the GNU General Public License
nuclear@4 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
nuclear@4 17 */
nuclear@4 18
nuclear@0 19 #ifndef VID_H_
nuclear@0 20 #define VID_H_
nuclear@0 21
nuclear@0 22 #include <inttypes.h>
nuclear@0 23
nuclear@0 24 struct video_file;
nuclear@0 25
nuclear@0 26 #ifdef __cplusplus
nuclear@0 27 extern "C" {
nuclear@0 28 #endif
nuclear@0 29
nuclear@0 30 struct video_file *vid_open(const char *fname);
nuclear@0 31 void vid_close(struct video_file *vf);
nuclear@0 32
nuclear@0 33 float vid_fps(struct video_file *vf);
nuclear@0 34
nuclear@0 35 /* returns the interval between frames in microseconds */
nuclear@0 36 unsigned int vid_frame_interval(struct video_file *vf);
nuclear@0 37
nuclear@0 38 int vid_frame_width(struct video_file *vf);
nuclear@0 39 int vid_frame_height(struct video_file *vf);
nuclear@0 40 size_t vid_frame_size(struct video_file *vf);
nuclear@0 41
nuclear@0 42 int vid_get_frame(struct video_file *vf, uint32_t *img);
nuclear@0 43
nuclear@0 44 #ifdef __cplusplus
nuclear@0 45 }
nuclear@0 46 #endif
nuclear@0 47
nuclear@0 48 #endif /* VID_H_ */