diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mov_encoder.cc | 8 |
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)*/ |