Browse Source

libaacplus: set supported profiles

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.0
Paul B Mahol 13 years ago
parent
commit
0b06bd1c7a
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      libavcodec/libaacplus.c

+ 6
- 0
libavcodec/libaacplus.c View File

@@ -119,6 +119,11 @@ static av_cold int aacPlus_encode_close(AVCodecContext *avctx)
return 0;
}

static const AVProfile profiles[] = {
{ FF_PROFILE_AAC_LOW, "LC" },
{ FF_PROFILE_UNKNOWN },
};

static const uint64_t channel_layouts[] = {
AV_CH_LAYOUT_MONO,
AV_CH_LAYOUT_STEREO,
@@ -136,6 +141,7 @@ AVCodec ff_libaacplus_encoder = {
.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
AV_SAMPLE_FMT_NONE },
.long_name = NULL_IF_CONFIG_SMALL("libaacplus AAC+ (Advanced Audio Codec with SBR+PS)"),
.profiles = profiles,
.channel_layouts = (const uint64_t[]) { AV_CH_LAYOUT_MONO,
AV_CH_LAYOUT_STEREO,
0 },


Loading…
Cancel
Save