summaryrefslogtreecommitdiff
path: root/src/mov_encoder.cc
diff options
context:
space:
mode:
authordeva <deva>2005-05-16 11:13:24 +0000
committerdeva <deva>2005-05-16 11:13:24 +0000
commit3f9ab7f6476ecfb9feef5380e3be6d280f1de76d (patch)
treef733a70476bbfcf64ecc4b1b9836d4e385a47d99 /src/mov_encoder.cc
parent74c97809b08c5f4c4159e101492e85de670db0da (diff)
Optimized some encoding parameters.
Diffstat (limited to 'src/mov_encoder.cc')
-rw-r--r--src/mov_encoder.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mov_encoder.cc b/src/mov_encoder.cc
index ec59687..9e4e6f5 100644
--- a/src/mov_encoder.cc
+++ b/src/mov_encoder.cc
@@ -39,6 +39,10 @@
/*
* $Log$
+ * Revision 1.18 2005/05/16 11:13:24 deva
+ *
+ * Optimized some encoding parameters.
+ *
* Revision 1.17 2005/05/16 10:45:10 deva
* Added new entries to fame parameter struct (bitrate omongst other things)
*
@@ -143,11 +147,11 @@ MovEncoder::MovEncoder(const char *filename)
// to JPEG), whereas P and B frames are motion compressed, respectively
// predicted from past reference (I or P) frame, or bidirectionally predicted
// from past and future reference frame.
- static const char coding[] = "IPPPP\0";
+ static const char coding[] = "IPPPPPPPPPPPPPPPPPPPPPPP\0";
fame_par.coding = coding;
// quality is a percentage, which controls compression versus quality.
- fame_par.quality = 100; // FIXME: This should be in config file!
+ fame_par.quality = 80; // FIXME: This should be in config file!
/////////////////////////////
fame_par.bitrate = 0; /* video bitrate (0=VBR)*/