mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec: add AV1 profiles to profile.h
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
d1c55fc460
commit
82b64e9bf6
|
@ -1107,6 +1107,7 @@ static const AVOption options[] = {
|
|||
{ "tune", "The metric that the encoder tunes for. Automatically chosen by the encoder by default", OFFSET(tune), AV_OPT_TYPE_INT, {.i64 = -1}, -1, AOM_TUNE_SSIM, VE, "tune"},
|
||||
{ "psnr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AOM_TUNE_PSNR}, 0, 0, VE, "tune"},
|
||||
{ "ssim", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AOM_TUNE_SSIM}, 0, 0, VE, "tune"},
|
||||
FF_AV1_PROFILE_OPTS
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
|
|
|
@ -51,6 +51,11 @@
|
|||
FF_AVCTX_PROFILE_OPTION("main", NULL, VIDEO, FF_PROFILE_MPEG2_MAIN)\
|
||||
FF_AVCTX_PROFILE_OPTION("simple", NULL, VIDEO, FF_PROFILE_MPEG2_SIMPLE)\
|
||||
|
||||
#define FF_AV1_PROFILE_OPTS \
|
||||
FF_AVCTX_PROFILE_OPTION("main", NULL, VIDEO, FF_PROFILE_AV1_MAIN)\
|
||||
FF_AVCTX_PROFILE_OPTION("high", NULL, VIDEO, FF_PROFILE_AV1_HIGH)\
|
||||
FF_AVCTX_PROFILE_OPTION("professional", NULL, VIDEO, FF_PROFILE_AV1_PROFESSIONAL)\
|
||||
|
||||
extern const AVProfile ff_aac_profiles[];
|
||||
extern const AVProfile ff_dca_profiles[];
|
||||
extern const AVProfile ff_dnxhd_profiles[];
|
||||
|
|
Loading…
Reference in New Issue