[cvs] / xvidcore / src / plugins / plugin_2pass1.c Repository:
ViewVC logotype

Diff of /xvidcore/src/plugins/plugin_2pass1.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.7, Wed Oct 1 23:23:01 2003 UTC revision 1.1.2.8, Sun Nov 9 20:49:21 2003 UTC
# Line 60  Line 60 
60      rc->stat_file = NULL;      rc->stat_file = NULL;
61    
62          /* Open the 1st pass file */          /* Open the 1st pass file */
63          if((rc->stat_file = fopen(param->filename, "w+")) == NULL)          if((rc->stat_file = fopen(param->filename, "w+b")) == NULL)
64                  return(XVID_ERR_FAIL);                  return(XVID_ERR_FAIL);
65    
66          /*          /*
67           * The File Header           * The File Header
68           */           */
69  #if 0          fprintf(rc->stat_file, "# XviD 2pass stat file (core version %d.%d.%d)\n",
70          fprintf(rc->stat_file, "# XviD 2pass stat file\n");                          XVID_VERSION_MAJOR(XVID_VERSION),
71      fprintf(rc->stat_file, "version %i.%i.%i\n",XVID_MAJOR(XVID_VERSION), XVID_MINOR(XVID_VERSION), XVID_PATCH(XVID_VERSION));                          XVID_VERSION_MINOR(XVID_VERSION),
72          fprintf(rc->stat_file, "start\n");                          XVID_VERSION_PATCH(XVID_VERSION));
73      fprintf(rc->stat_file, "type quantizer length kblocks mblocks ublocks\n");          fprintf(rc->stat_file, "# Please do not modify this file\n\n");
 #endif  
74    
75      rc->fq_error = 0;      rc->fq_error = 0;
76    
# Line 83  Line 82 
82  static int rc_2pass1_destroy(rc_2pass1_t * rc, xvid_plg_destroy_t * destroy)  static int rc_2pass1_destroy(rc_2pass1_t * rc, xvid_plg_destroy_t * destroy)
83  {  {
84          fclose(rc->stat_file);          fclose(rc->stat_file);
   
85          free(rc);          free(rc);
86          return(0);          return(0);
87  }  }

Legend:
Removed from v.1.1.2.7  
changed lines
  Added in v.1.1.2.8

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4