Commit f0287e12 authored by Linjie Fu's avatar Linjie Fu Committed by Mark Thompson

lavc/h265_profile_level: Fix the default profile in ff_h265_guess_level

Default to using multiplication factors for Main profile.

Introduced since cd3578a8.
Signed-off-by: 's avatarLinjie Fu <linjie.fu@intel.com>
parent 73aab08d
......@@ -188,7 +188,7 @@ const H265LevelDescriptor *ff_h265_guess_level(const H265RawProfileTierLevel *pt
profile = NULL;
if (!profile) {
// Default to using multiplication factors for Main profile.
profile = &h265_profiles[3];
profile = &h265_profiles[4];
}
pic_size = width * height;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment