[cvs] / xvidcore / src / image / image.h Repository:
ViewVC logotype

Diff of /xvidcore/src/image/image.h

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

revision 1.8.2.9, Sat Jan 25 22:44:50 2003 UTC revision 1.9, Wed Sep 25 23:37:09 2002 UTC
# Line 1  Line 1 
1  #ifndef _IMAGE_H_  #ifndef _IMAGE_H_
2  #define _IMAGE_H_  #define _IMAGE_H_
3    
 #include <stdlib.h>  
   
4  #include "../portab.h"  #include "../portab.h"
 #include "../global.h"  
5  #include "colorspace.h"  #include "colorspace.h"
6  #include "../xvid.h"  #include "../xvid.h"
7    
8  #define EDGE_SIZE  64  #define EDGE_SIZE  32
   
 void init_image(uint32_t cpu_flags);  
9    
10    
11  static void __inline  typedef struct
 image_null(IMAGE * image)  
12  {  {
13          image->y = image->u = image->v = NULL;          uint8_t *y;
14            uint8_t *u;
15            uint8_t *v;
16  }  }
17    IMAGE;
18    
19    void init_image(uint32_t cpu_flags);
20    
21  int32_t image_create(IMAGE * image,  int32_t image_create(IMAGE * image,
22                                           uint32_t edged_width,                                           uint32_t edged_width,
# Line 28  Line 27 
27    
28  void image_swap(IMAGE * image1,  void image_swap(IMAGE * image1,
29                                  IMAGE * image2);                                  IMAGE * image2);
   
30  void image_copy(IMAGE * image1,  void image_copy(IMAGE * image1,
31                                  IMAGE * image2,                                  IMAGE * image2,
32                                  uint32_t edged_width,                                  uint32_t edged_width,
33                                  uint32_t height);                                  uint32_t height);
   
34  void image_setedges(IMAGE * image,  void image_setedges(IMAGE * image,
35                                          uint32_t edged_width,                                          uint32_t edged_width,
36                                          uint32_t edged_height,                                          uint32_t edged_height,
37                                          uint32_t width,                                          uint32_t width,
38                                          uint32_t height);                                          uint32_t height);
   
39  void image_interpolate(const IMAGE * refn,  void image_interpolate(const IMAGE * refn,
40                                             IMAGE * refh,                                             IMAGE * refh,
41                                             IMAGE * refv,                                             IMAGE * refv,
42                                             IMAGE * refhv,                                             IMAGE * refhv,
43                                             uint32_t edged_width,                                             uint32_t edged_width,
44                                             uint32_t edged_height,                                             uint32_t edged_height,
                                            uint32_t quarterpel,  
45                                             uint32_t rounding);                                             uint32_t rounding);
46    
47  float image_psnr(IMAGE * orig_image,  float image_psnr(IMAGE * orig_image,
# Line 55  Line 50 
50                                   uint16_t width,                                   uint16_t width,
51                                   uint16_t height);                                   uint16_t height);
52    
 long plane_sse(uint8_t * orig,  
                    uint8_t * recon,  
                    uint16_t stride,  
                    uint16_t width,  
                    uint16_t height);  
   
 void  
 image_chroma_optimize(IMAGE * img, int width, int height, int edged_width);  
   
53    
54  int image_input(IMAGE * image,  int image_input(IMAGE * image,
55                                  uint32_t width,                                  uint32_t width,
56                                  int height,                                  int height,
57                                  uint32_t edged_width,                                  uint32_t edged_width,
58                                  uint8_t * src,                                  uint8_t * src,
59                                  int src_stride,                                  int csp);
                                 int csp,  
                                 int interlaced);  
60    
61  int image_output(IMAGE * image,  int image_output(IMAGE * image,
62                                   uint32_t width,                                   uint32_t width,
# Line 80  Line 64 
64                                   uint32_t edged_width,                                   uint32_t edged_width,
65                                   uint8_t * dst,                                   uint8_t * dst,
66                                   uint32_t dst_stride,                                   uint32_t dst_stride,
67                                   int csp,                                   int csp);
                                  int interlaced);  
68    
69    
70    
# Line 100  Line 83 
83  void  void
84  output_slice(IMAGE * cur, int edged_width, int width, XVID_DEC_PICTURE* out_frm, int mbx, int mby,int mbl);  output_slice(IMAGE * cur, int edged_width, int width, XVID_DEC_PICTURE* out_frm, int mbx, int mby,int mbl);
85    
   
 void  
 image_clear(IMAGE * img, int width, int height, int edged_width,  
                                         int y, int u, int v);  
   
   
 void  
 image_deblock_rrv(IMAGE * img, int edgeg_width,  
                                 const MACROBLOCK * mbs, int mb_width, int mb_height, int mb_stride,  
                                 int block, int flags);  
   
   
86  #endif                                                  /* _IMAGE_H_ */  #endif                                                  /* _IMAGE_H_ */

Legend:
Removed from v.1.8.2.9  
changed lines
  Added in v.1.9

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