Go to the source code of this file.
◆ FF_INTERNAL_FIELDS
      
        
          | #define FF_INTERNAL_FIELDS   1 | 
        
      
 
 
◆ PRINT_FMTS
      
        
          | #define PRINT_FMTS | 
          ( | 
            | 
          inout,  | 
        
        
           | 
           | 
            | 
          outin,  | 
        
        
           | 
           | 
            | 
          INOUT  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Value:
            AVFilterFormats *fmts =                                     \
                filter_ctx->inout##puts[
i]->outin##_formats;            \
 
            for (j = 0; j < fmts->nb_formats; j++)                    \
                printf(#INOUT "PUT[%d] %s: fmt:%s\n",                   \
            AVFilterFormats *fmts;                                      \
                                                                        \
            for (j = 0; j < fmts->nb_formats; j++)                    \
                printf(#INOUT 
"PUT[%d] %s: fmt:%s\n",                   \
 
                                                                        \
            layouts = 
filter_ctx->inout##puts[
i]->outin##_channel_layouts; \
 
            for (j = 0; j < 
layouts->nb_channel_layouts; j++) {                  \
 
                char buf[256];                                          \
                av_get_channel_layout_string(buf, sizeof(buf), -1,      \
                printf(#INOUT "PUT[%d] %s: chlayout:%s\n",              \
            }                                                           \
        }                                                               \
    }                                                                   \
 
 
 
◆ print_formats()
◆ main()
      
        
          | int main  | 
          ( | 
          int  | 
          argc,  | 
        
        
           | 
           | 
          char **  | 
          argv  | 
        
        
           | 
          ) | 
           |  |