[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.1, Fri Mar 8 02:44:46 2002 UTC revision 1.13, Thu Apr 1 11:11:28 2004 UTC
# Line 1  Line 1 
1    /*****************************************************************************
2     *
3     *  XVID MPEG-4 VIDEO CODEC
4     *  - Image related header  -
5     *
6     *  Copyright(C) 2001-2004 Peter Ross <pross@xvid.org>
7     *
8     *  This program is free software ; you can redistribute it and/or modify
9     *  it under the terms of the GNU General Public License as published by
10     *  the Free Software Foundation ; either version 2 of the License, or
11     *  (at your option) any later version.
12     *
13     *  This program is distributed in the hope that it will be useful,
14     *  but WITHOUT ANY WARRANTY ; without even the implied warranty of
15     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     *  GNU General Public License for more details.
17     *
18     *  You should have received a copy of the GNU General Public License
19     *  along with this program ; if not, write to the Free Software
20     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21     *
22     * $Id$
23     *
24     ****************************************************************************/
25    
26  #ifndef _IMAGE_H_  #ifndef _IMAGE_H_
27  #define _IMAGE_H_  #define _IMAGE_H_
28    
29    #include <stdlib.h>
30    
31  #include "../portab.h"  #include "../portab.h"
32    #include "../global.h"
33  #include "colorspace.h"  #include "colorspace.h"
34    #include "../xvid.h"
35    
36  #define EDGE_SIZE  32  #define EDGE_SIZE  64
37    
38    void init_image(uint32_t cpu_flags);
39    
 typedef struct  
 {  
         uint8_t * y;  
         uint8_t * u;  
         uint8_t * v;  
 } IMAGE;  
40    
41  void init_image(uint32_t cpu_flags);  static void __inline
42    image_null(IMAGE * image)
43    {
44            image->y = image->u = image->v = NULL;
45    }
46    
47  int32_t image_create(IMAGE * image, uint32_t edged_width, uint32_t edged_height);  int32_t image_create(IMAGE * image,
48  void image_destroy(IMAGE * image, uint32_t edged_width, uint32_t edged_height);                                           uint32_t edged_width,
49                                             uint32_t edged_height);
50    void image_destroy(IMAGE * image,
51                                       uint32_t edged_width,
52                                       uint32_t edged_height);
53    
54    void image_swap(IMAGE * image1,
55                                    IMAGE * image2);
56    
57    void image_copy(IMAGE * image1,
58                                    IMAGE * image2,
59                                    uint32_t edged_width,
60                                    uint32_t height);
61    
62    void image_setedges(IMAGE * image,
63                                            uint32_t edged_width,
64                                            uint32_t edged_height,
65                                            uint32_t width,
66                                            uint32_t height,
67                                            int bs_version);
68    
 void image_swap(IMAGE * image1, IMAGE * image2);  
 void image_copy(IMAGE *image1, IMAGE * image2, uint32_t edged_width, uint32_t height);  
 void image_setedges(IMAGE * image, uint32_t edged_width, uint32_t edged_height, uint32_t width, uint32_t height);  
69  void image_interpolate(const IMAGE * refn,  void image_interpolate(const IMAGE * refn,
70                                             IMAGE * refh, IMAGE * refv,  IMAGE * refhv,                                             IMAGE * refh,
71                                             uint32_t edged_width, uint32_t edged_height, uint32_t rounding);                                             IMAGE * refv,
72                                               IMAGE * refhv,
73  int image_input(IMAGE * image, uint32_t width, int height, uint32_t edged_width,                                             uint32_t edged_width,
74                          uint8_t * src, int csp);                                             uint32_t edged_height,
75                                               uint32_t quarterpel,
76                                               uint32_t rounding);
77    
78    float image_psnr(IMAGE * orig_image,
79                                     IMAGE * recon_image,
80                                     uint16_t stride,
81                                     uint16_t width,
82                                     uint16_t height);
83    
84    
85    float sse_to_PSNR(long sse, int pixels);
86    
87    long plane_sse(uint8_t * orig,
88                       uint8_t * recon,
89                       uint16_t stride,
90                       uint16_t width,
91                       uint16_t height);
92    
93    void
94    image_chroma_optimize(IMAGE * img, int width, int height, int edged_width);
95    
96    
97    int image_input(IMAGE * image,
98                                    uint32_t width,
99                                    int height,
100                                    uint32_t edged_width,
101                                    uint8_t * src[4],
102                                    int src_stride[4],
103                                    int csp,
104                                    int interlaced);
105    
106    int image_output(IMAGE * image,
107                                     uint32_t width,
108                                     int height,
109                                     uint32_t edged_width,
110                                     uint8_t * dst[4],
111                                     uint32_t dst_stride[4],
112                                     int csp,
113                                     int interlaced);
114    
115    
116    
117    int image_dump_yuvpgm(const IMAGE * image,
118                                              const uint32_t edged_width,
119                                              const uint32_t width,
120                                              const uint32_t height,
121                                              char *filename);
122    
123    float image_mad(const IMAGE * img1,
124                                    const IMAGE * img2,
125                                    uint32_t stride,
126                                    uint32_t width,
127                                    uint32_t height);
128    
129    void
130    output_slice(IMAGE * cur, int edged_width, int width, xvid_image_t* out_frm, int mbx, int mby,int mbl);
131    
132    
133    void
134    image_clear(IMAGE * img, int width, int height, int edged_width,
135                                            int y, int u, int v);
136    
137    
138    void
139    image_deblock_rrv(IMAGE * img, int edgeg_width,
140                                    const MACROBLOCK * mbs, int mb_width, int mb_height, int mb_stride,
141                                    int block, int flags);
142    
 int image_output(IMAGE * image, uint32_t width, int height, uint32_t edged_width,  
                         uint8_t * dst, uint32_t dst_stride, int csp);  
143    
144  #endif /* _IMAGE_H_ */  #endif /* _IMAGE_H_ */

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.13

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