diff options
| -rw-r--r-- | src/mov_encoder.cc | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mov_encoder.cc b/src/mov_encoder.cc index a999041..d86c638 100644 --- a/src/mov_encoder.cc +++ b/src/mov_encoder.cc @@ -25,6 +25,9 @@   */  /*   * $Log$ + * Revision 1.9  2005/05/02 10:59:44  deva + * Reverted to mpg file format (accidentally used avi with mpeg2) + *   * Revision 1.8  2005/05/01 09:56:26  deva   * Added Id and Log tags to all files   * @@ -49,8 +52,8 @@ MovEncoder::MovEncoder(const char *filename)      exit(1);    }  -  efc->oformat = guess_format("avi", NULL, NULL); -  //  efc->oformat = guess_format("mpeg", NULL, NULL); +  //  efc->oformat = guess_format("avi", NULL, NULL); +  efc->oformat = guess_format("mpeg", NULL, NULL);    //efc->oformat = guess_format(NULL, filename, NULL);    if(!(st = av_new_stream(efc, 0))) {  | 
