diff options
| author | deva <deva> | 2005-05-02 10:59:44 +0000 | 
|---|---|---|
| committer | deva <deva> | 2005-05-02 10:59:44 +0000 | 
| commit | 53a1548b491360dcbf3105bb36aa0d7a3f844772 (patch) | |
| tree | 5ca766018f848e8b7bdb8445b35214bdc29cb1bb | |
| parent | c5504d2676f28ad791e34ef0b80271e5c6e0992b (diff) | |
Reverted to mpg file format (accidentally used avi with mpeg2)
| -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))) {  | 
