[svn] / branches / dev-api-3 / xvidcore / src / xvid.h Repository:
ViewVC logotype

Diff of /branches/dev-api-3/xvidcore/src/xvid.h

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

trunk/xvidcore/src/xvid.h revision 315, Fri Jul 19 11:15:21 2002 UTC branches/dev-api-3/xvidcore/src/xvid.h revision 582, Sun Oct 6 07:05:51 2002 UTC
# Line 28  Line 28 
28  *               ToDo ? : when BFRAMES is defined, the API_VERSION should not  *               ToDo ? : when BFRAMES is defined, the API_VERSION should not
29  *                        be the same (3.0 ?)  *                        be the same (3.0 ?)
30  *  *
31  *  $Id: xvid.h,v 1.15 2002-07-19 11:15:21 albeu Exp $  *  $Id: xvid.h,v 1.17.2.2 2002-10-06 07:05:50 suxen_drol Exp $
32  *  *
33  *****************************************************************************/  *****************************************************************************/
34    
# Line 37  Line 37 
37  #define _XVID_H_  #define _XVID_H_
38    
39  #ifdef __cplusplus  #ifdef __cplusplus
40  *  $Id: xvid.h,v 1.15 2002-07-19 11:15:21 albeu Exp $  extern "C" {
41  #endif  #endif
42    
43  /*****************************************************************************  /*****************************************************************************
# Line 56  Line 56 
56    
57    
58  /* Colorspaces */  /* Colorspaces */
59  #define XVID_CSP_RGB24  0  #define XVID_CSP_RGB24  0               /* [b|g|r] */
60  #define XVID_CSP_YV12   1  #define XVID_CSP_YV12   1
61  #define XVID_CSP_YUY2   2  #define XVID_CSP_YUY2   2
62  #define XVID_CSP_UYVY   3  #define XVID_CSP_UYVY   3
# Line 66  Line 66 
66  #define XVID_CSP_USER   12  #define XVID_CSP_USER   12
67  #define XVID_CSP_EXTERN      1004  // per slice rendering  #define XVID_CSP_EXTERN      1004  // per slice rendering
68  #define XVID_CSP_YVYU   1002  #define XVID_CSP_YVYU   1002
69  #define XVID_CSP_RGB32  1000  #define XVID_CSP_RGB32  1000    /* [b|g|r|a] */
70    #define XVID_CSP_ABGR   1006    /* [a|b|g|r] */
71    #define XVID_CSP_RGBA   1005    /* [r|g|b|a] */
72    
73    
74    
75  #define XVID_CSP_NULL   9999  #define XVID_CSP_NULL   9999
76    
77  #define XVID_CSP_VFLIP  0x80000000      // flip mask  #define XVID_CSP_VFLIP  0x80000000      // flip mask
# Line 187  Line 192 
192  #define XVID_H263QUANT                  0x00000010  #define XVID_H263QUANT                  0x00000010
193  #define XVID_MPEGQUANT                  0x00000020  #define XVID_MPEGQUANT                  0x00000020
194  #define XVID_HALFPEL                    0x00000040      /* use halfpel interpolation */  #define XVID_HALFPEL                    0x00000040      /* use halfpel interpolation */
195    #define XVID_QUARTERPEL                 0x02000000
196  #define XVID_ADAPTIVEQUANT              0x00000080  #define XVID_ADAPTIVEQUANT              0x00000080
197  #define XVID_LUMIMASKING                0x00000100  #define XVID_LUMIMASKING                0x00000100
198  #define XVID_LATEINTRA                  0x00000200  #define XVID_LATEINTRA                  0x00000200
# Line 214  Line 220 
220  /* Flags for XVID_ENC_FRAME.motion */  /* Flags for XVID_ENC_FRAME.motion */
221  #define PMV_ADVANCEDDIAMOND8    0x00004000  #define PMV_ADVANCEDDIAMOND8    0x00004000
222  #define PMV_ADVANCEDDIAMOND16   0x00008000  #define PMV_ADVANCEDDIAMOND16   0x00008000
223  #define PMV_EARLYSTOP16                 0x00080000  
224    #define PMV_HALFPELDIAMOND16    0x00010000
225    #define PMV_HALFPELREFINE16     0x00020000
226    #define PMV_QUARTERPELREFINE16  0x00040000
227    #define PMV_EXTSEARCH16                 0x00080000      /* extend PMV by more searches */
228  #define PMV_QUICKSTOP16                 0x00100000      /* like early, but without any more refinement */  #define PMV_QUICKSTOP16                 0x00100000      /* like early, but without any more refinement */
229  #define PMV_UNRESTRICTED16      0x00200000      /* unrestricted ME, not implemented */  #define PMV_UNRESTRICTED16      0x00200000      /* unrestricted ME, not implemented */
230  #define PMV_OVERLAPPING16       0x00400000      /* overlapping ME, not implemented */  #define PMV_OVERLAPPING16       0x00400000      /* overlapping ME, not implemented */
# Line 222  Line 232 
232    
233  #define PMV_HALFPELDIAMOND8     0x01000000  #define PMV_HALFPELDIAMOND8     0x01000000
234  #define PMV_HALFPELREFINE8              0x02000000  #define PMV_HALFPELREFINE8              0x02000000
235  #define PMV_EXTSEARCH8                  0x04000000      /* extend PMV by more searches */  #define PMV_QUARTERPELREFINE8   0x04000000
236  #define PMV_EARLYSTOP8                  0x08000000  #define PMV_EXTSEARCH8                  0x08000000      /* extend PMV by more searches */
237  #define PMV_QUICKSTOP8                  0x10000000      /* like early, but without any more refinement */  #define PMV_QUICKSTOP8                  0x10000000      /* like early, but without any more refinement */
238  #define PMV_UNRESTRICTED8       0x20000000      /* unrestricted ME, not implemented */  #define PMV_UNRESTRICTED8       0x20000000      /* unrestricted ME, not implemented */
239  #define PMV_OVERLAPPING8                0x40000000      /* overlapping ME, not implemented */  #define PMV_OVERLAPPING8                0x40000000      /* overlapping ME, not implemented */
# Line 265  Line 275 
275          typedef struct          typedef struct
276          {          {
277                  int x;                  int x;
278                    int y;
279          }          }
280          VECTOR;          VECTOR;
281    

Legend:
Removed from v.315  
changed lines
  Added in v.582

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