summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-07 21:42:40 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-07 21:42:40 +0000
commit4251cb5e865c7335cc3846315df54ae2e4770180 (patch)
tree82339067d4c4536c83e0fc2c33d69a6107f1a131
parente0ca9721bcf07175121316cc4c779d55c9a9d867 (diff)
downloadmpv-4251cb5e865c7335cc3846315df54ae2e4770180.tar.bz2
mpv-4251cb5e865c7335cc3846315df54ae2e4770180.tar.xz
missing codecs.conf is no more a WARNING, it's FATAL
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@305 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--mplayer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index 6fe21f7ec3..6ac2b694bf 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -533,7 +533,8 @@ if(!filename){
// check codec.conf
if(!parse_codec_cfg(get_path("codecs.conf"))){
- printf("Warning! Couldn't load codecs.conf!");
+ printf("(copy/link DOCS/codecs.conf to ~/.mplayer/codecs.conf)\n");
+ exit(1);
}