| 
    FFmpeg
    
   | 
 
Audio merging filter. More...
#include "libavutil/avstring.h"#include "libavutil/bprint.h"#include "libavutil/channel_layout.h"#include "libavutil/opt.h"#include "avfilter.h"#include "audio.h"#include "bufferqueue.h"#include "internal.h"Go to the source code of this file.
Data Structures | |
| struct | AMergeContext | 
| struct | AMergeContext::amerge_input | 
Macros | |
| #define | SWR_CH_MAX 32 | 
| #define | OFFSET(x) offsetof(AMergeContext, x) | 
| #define | FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM | 
Functions | |
| AVFILTER_DEFINE_CLASS (amerge) | |
| static av_cold void | uninit (AVFilterContext *ctx) | 
| static int | query_formats (AVFilterContext *ctx) | 
| static int | config_output (AVFilterLink *outlink) | 
| static int | request_frame (AVFilterLink *outlink) | 
| static void | copy_samples (int nb_inputs, struct amerge_input in[], int *route, uint8_t *ins[], uint8_t **outs, int ns, int bps) | 
| Copy samples from several input streams to one output stream.   | |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *insamples) | 
| static av_cold int | init (AVFilterContext *ctx) | 
Variables | |
| static const AVOption | amerge_options [] | 
| static const AVFilterPad | amerge_outputs [] | 
| AVFilter | ff_af_amerge | 
Audio merging filter.
Definition in file af_amerge.c.
| #define SWR_CH_MAX 32 | 
Definition at line 35 of file af_amerge.c.
Referenced by auto_matrix(), conv_fltp_to_s16_nch_neon(), filter_frame(), query_formats(), sane_layout(), swr_convert(), swr_init(), swr_inject_silence(), and swri_rematrix_init().
| #define OFFSET | ( | x | ) | offsetof(AMergeContext, x) | 
Definition at line 50 of file af_amerge.c.
| #define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM | 
Definition at line 51 of file af_amerge.c.
| AVFILTER_DEFINE_CLASS | ( | amerge | ) | 
      
  | 
  static | 
Definition at line 61 of file af_amerge.c.
      
  | 
  static | 
Definition at line 75 of file af_amerge.c.
      
  | 
  static | 
Definition at line 141 of file af_amerge.c.
      
  | 
  static | 
Definition at line 173 of file af_amerge.c.
      
  | 
  inlinestatic | 
Copy samples from several input streams to one output stream.
| nb_inputs | number of inputs | 
| in | inputs; used only for the nb_ch field; | 
| route | routing values; input channel i goes to output channel route[i]; i < in[0].nb_ch are the channels from the first output; i >= in[0].nb_ch are the channels from the second output | 
| ins | pointer to the samples of each inputs, in packed format; will be left at the end of the copied samples | 
| outs | pointer to the samples of the output, in packet format; must point to a buffer big enough; will be left at the end of the copied samples | 
| ns | number of samples to copy | 
| bps | bytes per sample | 
Definition at line 202 of file af_amerge.c.
Referenced by filter_frame().
      
  | 
  static | 
Definition at line 223 of file af_amerge.c.
Referenced by init().
      
  | 
  static | 
Definition at line 307 of file af_amerge.c.
      
  | 
  static | 
Definition at line 53 of file af_amerge.c.
      
  | 
  static | 
Definition at line 329 of file af_amerge.c.
| AVFilter ff_af_amerge | 
Definition at line 339 of file af_amerge.c.
 1.8.2