mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-11 06:58:18 +00:00
libavcodec/dnxhdenc: fix typo, check if profile is dnxhr 444 or hqx
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
d7633ed7a5
commit
61fac0ea09
@ -324,7 +324,7 @@ static av_cold int dnxhd_encode_init(AVCodecContext *avctx)
|
|||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ctx->profile == FF_PROFILE_DNXHR_HQX ||
|
if (ctx->profile == FF_PROFILE_DNXHR_444 ||
|
||||||
ctx->profile == FF_PROFILE_DNXHR_HQX) {
|
ctx->profile == FF_PROFILE_DNXHR_HQX) {
|
||||||
avpriv_report_missing_feature(avctx,
|
avpriv_report_missing_feature(avctx,
|
||||||
"dnxhr_444 or dnxhr_hqx profile");
|
"dnxhr_444 or dnxhr_hqx profile");
|
||||||
|
Loading…
Reference in New Issue
Block a user