#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include "config.h"
#include "mp_msg.h"
#include "cpudetect.h"
#include "img_format.h"
#include "mp_image.h"
#include "vf.h"
#include "libvo/fastmemcpy.h"
 
Go to the source code of this file.
 | 
| static void  | toright (unsigned char *dst[3], unsigned char *src[3], int dststride[3], int srcstride[3], int w, int h, struct vf_priv_s *p) | 
|   | 
| static int  | put_image (struct vf_instance *vf, mp_image_t *mpi, double pts) | 
|   | 
| static int  | config (struct vf_instance *vf, int width, int height, int d_width, int d_height, unsigned int flags, unsigned int outfmt) | 
|   | 
| static int  | query_format (struct vf_instance *vf, unsigned int fmt) | 
|   | 
| static void  | uninit (struct vf_instance *vf) | 
|   | 
| static int  | vf_open (vf_instance_t *vf, char *args) | 
|   | 
  
  
      
        
          | static void toright  | 
          ( | 
          unsigned char *  | 
          dst[3],  | 
         
        
           | 
           | 
          unsigned char *  | 
          src[3],  | 
         
        
           | 
           | 
          int  | 
          dststride[3],  | 
         
        
           | 
           | 
          int  | 
          srcstride[3],  | 
         
        
           | 
           | 
          int  | 
          w,  | 
         
        
           | 
           | 
          int  | 
          h,  | 
         
        
           | 
           | 
          struct vf_priv_s *  | 
          p  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
static   | 
  
 
 
  
  
      
        
          | static int put_image  | 
          ( | 
          struct vf_instance *  | 
          vf,  | 
         
        
           | 
           | 
          mp_image_t *  | 
          mpi,  | 
         
        
           | 
           | 
          double  | 
          pts  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
static   | 
  
 
 
  
  
      
        
          | static int config  | 
          ( | 
          struct vf_instance *  | 
          vf,  | 
         
        
           | 
           | 
          int  | 
          width,  | 
         
        
           | 
           | 
          int  | 
          height,  | 
         
        
           | 
           | 
          int  | 
          d_width,  | 
         
        
           | 
           | 
          int  | 
          d_height,  | 
         
        
           | 
           | 
          unsigned int  | 
          flags,  | 
         
        
           | 
           | 
          unsigned int  | 
          outfmt  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
static   | 
  
 
 
  
  
      
        
          | static int query_format  | 
          ( | 
          struct vf_instance *  | 
          vf,  | 
         
        
           | 
           | 
          unsigned int  | 
          fmt  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
static   | 
  
 
 
  
  
      
        
          | static void uninit  | 
          ( | 
          struct vf_instance *  | 
          vf | ) | 
           | 
         
       
   | 
  
static   | 
  
 
 
Initial value:= {
        "convert stereo movie from top-bottom to left-right field",
        "down3dright",
        "Zdenek Kabelac",
        "",
}
 
Definition at line 159 of file vf_down3dright.c.