#include "avcodec.h"#include "bytestream.h"Go to the source code of this file.
Data Structures | |
| struct | ROQDPCMContext |
Defines | |
| #define | ROQ_FIRST_FRAME_SIZE (735*8) |
| #define | ROQ_FRAME_SIZE 735 |
| #define | MAX_DPCM (127*127) |
Functions | |
| static av_cold void | roq_dpcm_table_init (void) |
| static av_cold int | roq_dpcm_encode_init (AVCodecContext *avctx) |
| static unsigned char | dpcm_predict (short *previous, short current) |
| static int | roq_dpcm_encode_frame (AVCodecContext *avctx, unsigned char *frame, int buf_size, void *data) |
| static av_cold int | roq_dpcm_encode_close (AVCodecContext *avctx) |
Variables | |
| static unsigned char | dpcmValues [MAX_DPCM] |
| AVCodec | roq_dpcm_encoder |
| #define MAX_DPCM (127*127) |
Definition at line 31 of file roqaudioenc.c.
Referenced by dpcm_predict(), and roq_dpcm_table_init().
| #define ROQ_FIRST_FRAME_SIZE (735*8) |
| #define ROQ_FRAME_SIZE 735 |
| static unsigned char dpcm_predict | ( | short * | previous, | |
| short | current | |||
| ) | [static] |
| static av_cold int roq_dpcm_encode_close | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 161 of file roqaudioenc.c.
| static int roq_dpcm_encode_frame | ( | AVCodecContext * | avctx, | |
| unsigned char * | frame, | |||
| int | buf_size, | |||
| void * | data | |||
| ) | [static] |
Definition at line 119 of file roqaudioenc.c.
| static av_cold int roq_dpcm_encode_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 52 of file roqaudioenc.c.
| static av_cold void roq_dpcm_table_init | ( | void | ) | [static] |
unsigned char dpcmValues[MAX_DPCM] [static] |
Definition at line 32 of file roqaudioenc.c.
Referenced by dpcm_predict(), and roq_dpcm_table_init().
Initial value:
{
"roq_dpcm",
CODEC_TYPE_AUDIO,
CODEC_ID_ROQ_DPCM,
sizeof(ROQDPCMContext),
roq_dpcm_encode_init,
roq_dpcm_encode_frame,
roq_dpcm_encode_close,
NULL,
.sample_fmts = (enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
.long_name = NULL_IF_CONFIG_SMALL("id RoQ DPCM"),
}
Definition at line 168 of file roqaudioenc.c.
1.5.8