summaryrefslogtreecommitdiffstats
path: root/codec-cfg.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-04 07:46:22 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-04 07:46:22 +0000
commit0bb8ec366fef0e549e0d173adc0979cb06a686a9 (patch)
treecb538e859525327ccbfaac47abae032ed61c7827 /codec-cfg.c
parent0a6181e4c9b55075eed38cfacce42b4f4abf20d6 (diff)
downloadmpv-0bb8ec366fef0e549e0d173adc0979cb06a686a9.tar.bz2
mpv-0bb8ec366fef0e549e0d173adc0979cb06a686a9.tar.xz
FourCC is the preferred spelling according to iive and arpi.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10521 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'codec-cfg.c')
-rw-r--r--codec-cfg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/codec-cfg.c b/codec-cfg.c
index d2688b29eb..627f95ba83 100644
--- a/codec-cfg.c
+++ b/codec-cfg.c
@@ -78,10 +78,10 @@ static int add_to_fourcc(char *s, char *alias, unsigned int *fourcc,
goto err_out_parse_error;
return 1;
err_out_duplicated:
- mp_msg(MSGT_CODECCFG,MSGL_ERR,"duplicated fourcc");
+ mp_msg(MSGT_CODECCFG,MSGL_ERR,"duplicated FourCC");
return 0;
err_out_too_many:
- mp_msg(MSGT_CODECCFG,MSGL_ERR,"too many fourcc/format...");
+ mp_msg(MSGT_CODECCFG,MSGL_ERR,"too many FourCCs/formats...");
return 0;
err_out_parse_error:
mp_msg(MSGT_CODECCFG,MSGL_ERR,"parse error");
@@ -97,7 +97,7 @@ static int add_to_format(char *s, char *alias,unsigned int *fourcc, unsigned int
for (i = 0; i < CODECS_MAX_FOURCC && fourcc[i] != 0xffffffff; i++)
/* NOTHING */;
if (i == CODECS_MAX_FOURCC) {
- mp_msg(MSGT_CODECCFG,MSGL_ERR,"too many fourccs/formats...");
+ mp_msg(MSGT_CODECCFG,MSGL_ERR,"too many FourCCs/formats...");
return 0;
}
@@ -319,7 +319,7 @@ static int validate_codec(codecs_t *c, int type)
#if 0
if (c->fourcc[0] == 0xffffffff) {
- mp_msg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) does not have fourcc/format!\n", c->name);
+ mp_msg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) does not have FourCC/format!\n", c->name);
return 0;
}