#include "libavutil/avassert.h"
#include "avcodec.h"
#include "internal.h"
#include "g722.h"
#include "libavutil/common.h"
Go to the source code of this file.
Defines | |
| #define | FREEZE_INTERVAL 128 | 
| #define | MAX_FRAME_SIZE 32768 | 
| #define | MIN_TRELLIS 0 | 
| #define | MAX_TRELLIS 16 | 
| #define | STORE_NODE(index, UPDATE, VALUE) | 
Functions | |
| static av_cold int | g722_encode_close (AVCodecContext *avctx) | 
| static av_cold int | g722_encode_init (AVCodecContext *avctx) | 
| static void | filter_samples (G722Context *c, const int16_t *samples, int *xlow, int *xhigh) | 
| static int | encode_high (const struct G722Band *state, int xhigh) | 
| static int | encode_low (const struct G722Band *state, int xlow) | 
| static void | g722_encode_trellis (G722Context *c, int trellis, uint8_t *dst, int nb_samples, const int16_t *samples) | 
| static av_always_inline void | encode_byte (G722Context *c, uint8_t *dst, const int16_t *samples) | 
| static void | g722_encode_no_trellis (G722Context *c, uint8_t *dst, int nb_samples, const int16_t *samples) | 
| static int | g722_encode_frame (AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr) | 
Variables | |
| static const int16_t | low_quant [33] | 
| AVCodec | ff_adpcm_g722_encoder | 
Definition in file g722enc.c.
| #define MAX_TRELLIS 16 | 
| #define MIN_TRELLIS 0 | 
| #define STORE_NODE | ( | index, | |||
| UPDATE, | |||||
| VALUE | ) | 
| static av_always_inline void encode_byte | ( | G722Context * | c, | |
| uint8_t * | dst, | |||
| const int16_t * | samples | |||
| ) |  [static] | 
        
| static void filter_samples | ( | G722Context * | c, | |
| const int16_t * | samples, | |||
| int * | xlow, | |||
| int * | xhigh | |||
| ) |  [inline, static] | 
        
Definition at line 147 of file g722enc.c.
Referenced by ff_filter_samples_framed(), g722_encode_trellis(), init(), and join_init().
| static av_cold int g722_encode_close | ( | AVCodecContext * | avctx | ) |  [static] | 
        
| static int g722_encode_frame | ( | AVCodecContext * | avctx, | |
| AVPacket * | avpkt, | |||
| const AVFrame * | frame, | |||
| int * | got_packet_ptr | |||
| ) |  [static] | 
        
| static av_cold int g722_encode_init | ( | AVCodecContext * | avctx | ) |  [static] | 
        
| static void g722_encode_no_trellis | ( | G722Context * | c, | |
| uint8_t * | dst, | |||
| int | nb_samples, | |||
| const int16_t * | samples | |||
| ) |  [static] | 
        
| static void g722_encode_trellis | ( | G722Context * | c, | |
| int | trellis, | |||
| uint8_t * | dst, | |||
| int | nb_samples, | |||
| const int16_t * | samples | |||
| ) |  [static] | 
        
Initial value:
 {
    .name           = "g722",
    .type           = AVMEDIA_TYPE_AUDIO,
    .id             = AV_CODEC_ID_ADPCM_G722,
    .priv_data_size = sizeof(G722Context),
    .init           = g722_encode_init,
    .close          = g722_encode_close,
    .encode2        = g722_encode_frame,
    .capabilities   = CODEC_CAP_SMALL_LAST_FRAME,
    .long_name      = NULL_IF_CONFIG_SMALL("G.722 ADPCM"),
    .sample_fmts    = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
                                                     AV_SAMPLE_FMT_NONE },
}
Initial value:
 {
      35,   72,  110,  150,  190,  233,  276,  323,
     370,  422,  473,  530,  587,  650,  714,  786,
     858,  940, 1023, 1121, 1219, 1339, 1458, 1612,
    1765, 1980, 2195, 2557, 2919
}
Definition at line 140 of file g722enc.c.
Referenced by encode_low().
 1.5.8