#include "libavutil/mathematics.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "avresample.h"
#include "internal.h"
#include "audio_mix.h"
Go to the source code of this file.
Defines | |
| #define | OFFSET(x) offsetof(AVAudioResampleContext, x) |
| #define | PARAM AV_OPT_FLAG_AUDIO_PARAM |
Functions | |
| AVAudioResampleContext * | avresample_alloc_context (void) |
| Allocate AVAudioResampleContext and set options. | |
| const AVClass * | avresample_get_class (void) |
| Get the AVClass for AVAudioResampleContext. | |
Variables | |
| static const AVOption | options [] |
| static const AVClass | av_resample_context_class |
Definition in file options.c.
| #define OFFSET | ( | x | ) | offsetof(AVAudioResampleContext, x) |
| AVAudioResampleContext* avresample_alloc_context | ( | void | ) |
Allocate AVAudioResampleContext and set options.
Definition at line 76 of file options.c.
Referenced by config_output(), config_props(), and main().
| const AVClass* avresample_get_class | ( | void | ) |
Get the AVClass for AVAudioResampleContext.
Can be used in combination with AV_OPT_SEARCH_FAKE_OBJ for examining options without allocating a context.
const AVClass av_resample_context_class [static] |
Initial value:
{
.class_name = "AVAudioResampleContext",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
}
1.5.8