Skip to content
Snippets Groups Projects
Commit c254ee46 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

packetizers: allow inclusion HXXX NAL helpers from C++ code

parent 4f02040a
No related branches found
No related tags found
1 merge request!3339packetizers: allow inclusion HXXX NAL helpers from C++ code
Pipeline #318120 passed with stage
in 14 minutes and 37 seconds
......@@ -24,6 +24,10 @@
# include <vlc_es.h>
# include <vlc_bits.h>
#ifdef __cplusplus
extern "C" {
#endif
#define PROFILE_H264_BASELINE 66
#define PROFILE_H264_MAIN 77
#define PROFILE_H264_EXTENDED 88
......@@ -222,4 +226,8 @@ typedef struct
bool h264_decode_sei_recovery_point( bs_t *, h264_sei_recovery_point_t * );
#ifdef __cplusplus
}
#endif
#endif /* H264_NAL_H */
......@@ -23,6 +23,10 @@
# include <vlc_es.h>
# include <vlc_bits.h>
#ifdef __cplusplus
extern "C" {
#endif
#define HEVC_VPS_ID_MAX 15
#define HEVC_SPS_ID_MAX 15
#define HEVC_PPS_ID_MAX 63
......@@ -387,4 +391,8 @@ uint8_t hevc_get_num_clock_ts( const hevc_sequence_parameter_set_t *,
bool hevc_frame_is_progressive( const hevc_sequence_parameter_set_t *,
const hevc_sei_pic_timing_t * /* can be NULL */);
#ifdef __cplusplus
}
#endif
#endif /* HEVC_NAL_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment