mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			224 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			224 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* Raw.h */
 | 
						|
 | 
						|
typedef struct {
 | 
						|
 | 
						|
    /* CONFIGURATION */
 | 
						|
 | 
						|
    /* Distance between lines (0=no padding) */
 | 
						|
    int stride;
 | 
						|
 | 
						|
    /* PRIVATE (initialized by decoder) */
 | 
						|
 | 
						|
    /* Padding between lines */
 | 
						|
    int skip;
 | 
						|
 | 
						|
} RAWSTATE;
 |