[svn] / branches / release-1_1-branch / xvidcore / examples / xvid_decraw.c Repository:
ViewVC logotype

Diff of /branches/release-1_1-branch/xvidcore/examples/xvid_decraw.c

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

revision 1426, Tue Apr 13 21:20:45 2004 UTC revision 1523, Mon Jul 26 19:31:30 2004 UTC
# Line 20  Line 20 
20   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
21   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22   *   *
23   * $Id: xvid_decraw.c,v 1.13 2004-04-13 21:20:45 suxen_drol Exp $   * $Id: xvid_decraw.c,v 1.18 2004-07-26 19:31:30 edgomez Exp $
24   *   *
25   ****************************************************************************/   ****************************************************************************/
26    
# Line 87  Line 87 
87  static int dec_stop();  static int dec_stop();
88  static void usage();  static void usage();
89  static int write_image(char *prefix, unsigned char *image);  static int write_image(char *prefix, unsigned char *image);
 static int write_tga(char *filename, unsigned char *image);  
90  static int write_pnm(char *filename, unsigned char *image);  static int write_pnm(char *filename, unsigned char *image);
91    static int write_tga(char *filename, unsigned char *image);
92    
93  const char * type2str(int type)  const char * type2str(int type)
94  {  {
# Line 187  Line 186 
186    
187  #if defined(_MSC_VER)  #if defined(_MSC_VER)
188          if (ARG_INPUTFILE==NULL) {          if (ARG_INPUTFILE==NULL) {
189                  fprintf(stderr, "Warning: MSVC build does not read correctly from stdin. Use the -i switch.\n\n");                  fprintf(stderr, "Warning: MSVC build does not read EOF correctly from stdin. Use the -i switch.\n\n");
190          }          }
191  #endif  #endif
192    
# Line 413  Line 412 
412                  printf("Nothing was decoded!\n");                  printf("Nothing was decoded!\n");
413          }          }
414    
   
415  /*****************************************************************************  /*****************************************************************************
416   *      XviD PART  Stop   *      XviD PART  Stop
417   ****************************************************************************/   ****************************************************************************/
# Line 585  Line 583 
583          return(0);          return(0);
584  }  }
585    
586  int write_pnm(char *filename, unsigned char *image)  static int write_pnm(char *filename, unsigned char *image)
587  {  {
588          FILE * f;          FILE * f;
589    
# Line 624  Line 622 
622    
623          return 0;          return 0;
624  }  }
625    
626  /*****************************************************************************  /*****************************************************************************
627   * Routines for decoding: init decoder, use, and stop decoder   * Routines for decoding: init decoder, use, and stop decoder
628   ****************************************************************************/   ****************************************************************************/
# Line 637  Line 636 
636          xvid_gbl_init_t   xvid_gbl_init;          xvid_gbl_init_t   xvid_gbl_init;
637          xvid_dec_create_t xvid_dec_create;          xvid_dec_create_t xvid_dec_create;
638    
639            /* Reset the structure with zeros */
640            memset(&xvid_gbl_init, 0, sizeof(xvid_gbl_init_t));
641            memset(&xvid_dec_create, 0, sizeof(xvid_dec_create_t));
642    
643          /*------------------------------------------------------------------------          /*------------------------------------------------------------------------
644           * XviD core initialization           * XviD core initialization
645           *----------------------------------------------------------------------*/           *----------------------------------------------------------------------*/
# Line 691  Line 694 
694    
695          xvid_dec_frame_t xvid_dec_frame;          xvid_dec_frame_t xvid_dec_frame;
696    
697            /* Reset all structures */
698            memset(&xvid_dec_frame, 0, sizeof(xvid_dec_frame_t));
699            memset(xvid_dec_stats, 0, sizeof(xvid_dec_stats_t));
700    
701          /* Set version */          /* Set version */
702          xvid_dec_frame.version = XVID_VERSION;          xvid_dec_frame.version = XVID_VERSION;
703          xvid_dec_stats->version = XVID_VERSION;          xvid_dec_stats->version = XVID_VERSION;

Legend:
Removed from v.1426  
changed lines
  Added in v.1523

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