pmp_parse.h

来自「pmpmodavc102_sub_src,psp下很好的播放器源码」· C头文件 代码 · 共 66 行

H
66
字号
/*
PMP Mod
Copyright (C) 2006 Raphael

E-mail:   raphael@fx-world.org

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

/*
subtitle parsing layer
*/

#ifndef pmp_parse_h__
#define pmp_parse_h__

#include <stdio.h>


#define max_subtitle_string 512


struct pmp_sub_frame_struct {
	unsigned int		p_start_frame;
	unsigned int		p_end_frame;
	unsigned int		p_num_lines;
	char	p_string[max_subtitle_string];
	
	struct pmp_sub_frame_struct *next;
	struct pmp_sub_frame_struct *prev;
};


struct pmp_sub_parse_struct {
	struct pmp_sub_frame_struct	*p_sub_frame;		// Linked list of subtitle frames
	unsigned int		p_num_sub_frames;				// Number of subtitle frames
	struct pmp_sub_frame_struct	*p_cur_sub_frame;		// current subtitle frame
	FILE		*p_in;
};


void pmp_sub_frame_safe_constructor(struct pmp_sub_frame_struct *p);
void pmp_sub_frame_safe_destructor(struct pmp_sub_frame_struct *p);
void pmp_sub_parse_safe_constructor(struct pmp_sub_parse_struct *p);
char *pmp_sub_parse_open(struct pmp_sub_parse_struct *p, char *s);
void pmp_sub_parse_close(struct pmp_sub_parse_struct *p);
char* pmp_sub_parse_get_frame(struct pmp_sub_parse_struct *p, struct pmp_sub_frame_struct **f, unsigned int frame );

// Helper for parsing functions
int strconv( char* s, const char a, const char b );


#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?