Skip to content
Open

Hevc #1115

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion include/upipe-framers/uref_h265_flow.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@ UREF_ATTR_VOID(h265_flow, tier, "h265.tier", tier)
UREF_ATTR_SMALL_UNSIGNED(h265_flow, profile, "h265.profile", profile)
UREF_ATTR_SMALL_UNSIGNED(h265_flow, profile_space, "h265.profilespace",
profile space)
UREF_ATTR_SMALL_UNSIGNED(h265_flow, profile_compability, "h265.profilecomp",
UREF_ATTR_UNSIGNED(h265_flow, profile_compatibility, "h265.profilecomp",
profile compatibility)
UREF_ATTR_UNSIGNED(h265_flow, profile_constraint, "h265.profileconstraint",
profile constraint)
UREF_ATTR_SMALL_UNSIGNED(h265_flow, level, "h265.level", level)

#ifdef __cplusplus
Expand Down
4 changes: 4 additions & 0 deletions lib/upipe-framers/upipe_h265_framer.c
Original file line number Diff line number Diff line change
Expand Up @@ -806,6 +806,10 @@ static bool upipe_h265f_activate_sps(struct upipe *upipe, uint32_t sps_id)
uref_h265_flow_set_profile(flow_def, upipe_h265f->profile_idc))
UBASE_FATAL(upipe,
uref_h265_flow_set_level(flow_def, upipe_h265f->level_idc))
UBASE_FATAL(upipe,
uref_h265_flow_set_profile_compatibility(flow_def, upipe_h265f->profile_compatibility))
UBASE_FATAL(upipe,
uref_h265_flow_set_profile_constraint(flow_def, upipe_h265f->constraint_indicator))

uint64_t max_octetrate, max_bs;
uint32_t max_luma_ps;
Expand Down
Loading