Skip to content
Snippets Groups Projects
Commit 16837f98 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/aacenc: use enum for aac coder.

parent 5748e249
No related branches found
No related tags found
No related merge requests found
......@@ -30,12 +30,14 @@
#include "audio_frame_queue.h"
#include "psymodel.h"
#define AAC_CODER_FAAC 0
#define AAC_CODER_ANMR 1
#define AAC_CODER_TWOLOOP 2
#define AAC_CODER_FAST 3
#define AAC_CODER_NB 4
typedef enum AACCoder {
AAC_CODER_FAAC = 0,
AAC_CODER_ANMR,
AAC_CODER_TWOLOOP,
AAC_CODER_FAST,
AAC_CODER_NB,
}AACCoder;
typedef struct AACEncOptions {
int stereo_mode;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment