comparison codec-cfg.h @ 332:a5c6f9d536dd

find_codec() modified
author szabii
date Tue, 10 Apr 2001 23:18:01 +0000
parents fc98b6c3a3dc
children 3e0c68209600
comparison
equal deleted inserted replaced
331:0f1737e626fa 332:a5c6f9d536dd
48 short flags; 48 short flags;
49 short status; 49 short status;
50 } codecs_t; 50 } codecs_t;
51 51
52 codecs_t** parse_codec_cfg(char *cfgfile); 52 codecs_t** parse_codec_cfg(char *cfgfile);
53 codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap,int audioflag); 53 codecs_t* find_video_codec(unsigned int fourcc, unsigned int *fourccmap, codecs_t *start);
54 codecs_t* find_audio_codec(unsigned int fourcc, unsigned int *fourccmap, codecs_t *start);
55 codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap,codecs_t *start,int audioflag);
54 56
55 #endif 57 #endif