Browse Source

packetizer: hxxx_common: rename function pointer

pull/165/head
François Cartegnie 2 years ago
committed by Steve Lhomme
parent
commit
6e7b32f64d
  1. 3
      modules/packetizer/hxxx_common.c
  2. 4
      modules/packetizer/hxxx_common.h

3
modules/packetizer/hxxx_common.c

@ -111,7 +111,8 @@ block_t * cc_storage_get_current( cc_storage_t *p_ccs, decoder_cc_desc_t *p_desc
* Will prepend a SPS and PPS before each keyframe
****************************************************************************/
block_t *PacketizeXXC1( decoder_t *p_dec, uint8_t i_nal_length_size,
block_t **pp_block, pf_annexb_nal_packetizer pf_nal_parser )
block_t **pp_block,
pf_annexb_nal_parse pf_nal_parser )
{
block_t *p_block;
block_t *p_ret = NULL;

4
modules/packetizer/hxxx_common.h

@ -37,8 +37,8 @@ block_t * cc_storage_get_current( cc_storage_t *p_ccs, decoder_cc_desc_t * );
/* */
typedef block_t * (*pf_annexb_nal_packetizer)(decoder_t *, bool *, block_t *);
block_t *PacketizeXXC1( decoder_t *, uint8_t, block_t **, pf_annexb_nal_packetizer );
typedef block_t * (*pf_annexb_nal_parse)(decoder_t *, bool *, block_t *);
block_t *PacketizeXXC1( decoder_t *, uint8_t, block_t **, pf_annexb_nal_parse );
#endif // HXXX_COMMON_H

Loading…
Cancel
Save