Browse Source

hxxx_helper: remove unused non generic dpb helper

pull/171/head
François Cartegnie 2 years ago
committed by Steve Lhomme
parent
commit
0085375629
  1. 11
      modules/codec/hxxx_helper.c
  2. 3
      modules/codec/hxxx_helper.h

11
modules/codec/hxxx_helper.c

@ -858,17 +858,6 @@ hxxx_helper_get_current_sar(const struct hxxx_helper *hh, int *p_num, int *p_den
return VLC_EGENERIC;
}
int
h264_helper_get_current_dpb_values(const struct hxxx_helper *hh,
uint8_t *p_depth, unsigned *p_delay)
{
const struct hxxx_helper_nal *hsps = h264_helper_get_current_sps(hh);
if (hsps == NULL)
return VLC_EGENERIC;
return h264_get_dpb_values(hsps->h264_sps, p_depth, p_delay) ?
VLC_SUCCESS : VLC_EGENERIC;
}
int
hxxx_helper_get_current_profile_level(const struct hxxx_helper *hh,
uint8_t *p_profile, uint8_t *p_level)

3
modules/codec/hxxx_helper.h

@ -118,9 +118,6 @@ int hxxx_helper_get_current_picture_size(const struct hxxx_helper *hh,
int hxxx_helper_get_current_sar(const struct hxxx_helper *hh, int *p_num, int *p_den);
int h264_helper_get_current_dpb_values(const struct hxxx_helper *hh,
uint8_t *p_depth, unsigned *pi_delay);
int hxxx_helper_get_current_profile_level(const struct hxxx_helper *hh,
uint8_t *p_profile, uint8_t *p_level);

Loading…
Cancel
Save