summaryrefslogtreecommitdiffstats
path: root/codec-cfg.h
diff options
context:
space:
mode:
authorszabii <szabii@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-10 23:18:01 +0000
committerszabii <szabii@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-10 23:18:01 +0000
commitd80be73b8ee09a92a274e41ee774501d6534c8f3 (patch)
treedab40b4543d0a00cd904bd8db7a3beefbf82ffc0 /codec-cfg.h
parent90b7957f322a2b885ba2d9f91654b5b52eac3123 (diff)
downloadmpv-d80be73b8ee09a92a274e41ee774501d6534c8f3.tar.bz2
mpv-d80be73b8ee09a92a274e41ee774501d6534c8f3.tar.xz
find_codec() modified
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@333 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'codec-cfg.h')
-rw-r--r--codec-cfg.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/codec-cfg.h b/codec-cfg.h
index fddec5a096..c95de9aba5 100644
--- a/codec-cfg.h
+++ b/codec-cfg.h
@@ -50,6 +50,8 @@ typedef struct {
} codecs_t;
codecs_t** parse_codec_cfg(char *cfgfile);
-codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap,int audioflag);
+codecs_t* find_video_codec(unsigned int fourcc, unsigned int *fourccmap, codecs_t *start);
+codecs_t* find_audio_codec(unsigned int fourcc, unsigned int *fourccmap, codecs_t *start);
+codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap,codecs_t *start,int audioflag);
#endif