[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.7, Sat Dec 14 06:07:03 2002 UTC revision 1.11.2.1, Sat Feb 22 08:49:45 2003 UTC
# Line 1  Line 1 
1  #ifndef _IMAGE_H_  #ifndef _IMAGE_H_
2  #define _IMAGE_H_  #define _IMAGE_H_
3    
4    #include <stdlib.h>
5    
6  #include "../portab.h"  #include "../portab.h"
7  #include "../global.h"  #include "../global.h"
8  #include "colorspace.h"  #include "colorspace.h"
# Line 26  Line 28 
28    
29  void image_swap(IMAGE * image1,  void image_swap(IMAGE * image1,
30                                  IMAGE * image2);                                  IMAGE * image2);
31    
32  void image_copy(IMAGE * image1,  void image_copy(IMAGE * image1,
33                                  IMAGE * image2,                                  IMAGE * image2,
34                                  uint32_t edged_width,                                  uint32_t edged_width,
35                                  uint32_t height);                                  uint32_t height);
36    
37  void image_setedges(IMAGE * image,  void image_setedges(IMAGE * image,
38                                          uint32_t edged_width,                                          uint32_t edged_width,
39                                          uint32_t edged_height,                                          uint32_t edged_height,
40                                          uint32_t width,                                          uint32_t width,
41                                          uint32_t height);                                          uint32_t height);
42    
43  void image_interpolate(const IMAGE * refn,  void image_interpolate(const IMAGE * refn,
44                                             IMAGE * refh,                                             IMAGE * refh,
45                                             IMAGE * refv,                                             IMAGE * refv,
# Line 51  Line 56 
56                                   uint16_t height);                                   uint16_t height);
57    
58    
59    float sse_to_PSNR(long sse, int pixels);
60    
61    long plane_sse(uint8_t * orig,
62                       uint8_t * recon,
63                       uint16_t stride,
64                       uint16_t width,
65                       uint16_t height);
66    
67  void  void
68  image_chroma_optimize(IMAGE * img, int width, int height, int edged_width);  image_chroma_optimize(IMAGE * img, int width, int height, int edged_width);
69    
# Line 59  Line 72 
72                                  uint32_t width,                                  uint32_t width,
73                                  int height,                                  int height,
74                                  uint32_t edged_width,                                  uint32_t edged_width,
75                                  uint8_t * src,                                  uint8_t * src[4],
76                                  int src_stride,                                  int src_stride[4],
77                                  int csp,                                  int csp,
78                                  int interlaced);                                  int interlaced);
79    
# Line 68  Line 81 
81                                   uint32_t width,                                   uint32_t width,
82                                   int height,                                   int height,
83                                   uint32_t edged_width,                                   uint32_t edged_width,
84                                   uint8_t * dst,                                   uint8_t * dst[4],
85                                   uint32_t dst_stride,                                   uint32_t dst_stride[4],
86                                   int csp,                                   int csp,
87                                   int interlaced);                                   int interlaced);
88    
# Line 88  Line 101 
101                                  uint32_t height);                                  uint32_t height);
102    
103  void  void
104  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_image_t* out_frm, int mbx, int mby,int mbl);
105    
106    
107  void  void

Legend:
Removed from v.1.8.2.7  
changed lines
  Added in v.1.11.2.1

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