changeset 10520:880e5d24c4c3

FourCC is the preferred spelling according to iive and arpi.
author diego
date Mon, 04 Aug 2003 07:46:22 +0000
parents 461be9432217
children 141141fdd250
files codec-cfg.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/codec-cfg.c	Mon Aug 04 01:29:58 2003 +0000
+++ b/codec-cfg.c	Mon Aug 04 07:46:22 2003 +0000
@@ -78,10 +78,10 @@
 		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 @@
 	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 @@
 
 #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;
 	}