You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
4.5 KiB
117 lines
4.5 KiB
/*****************************************************************************
|
|
* hxxx_helper.h: AnnexB / avcC helper for dumb decoders
|
|
*****************************************************************************
|
|
* Copyright (C) 2017 VLC authors and VideoLAN
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <vlc_block.h>
|
|
#include <vlc_fourcc.h>
|
|
|
|
#include "../packetizer/h264_nal.h"
|
|
#include "../packetizer/hevc_nal.h"
|
|
|
|
struct hxxx_helper_nal
|
|
{
|
|
block_t *b;
|
|
union {
|
|
void *xps;
|
|
h264_sequence_parameter_set_t *h264_sps;
|
|
h264_picture_parameter_set_t *h264_pps;
|
|
hevc_sequence_parameter_set_t *hevc_sps;
|
|
hevc_picture_parameter_set_t *hevc_pps;
|
|
hevc_video_parameter_set_t *hevc_vps;
|
|
};
|
|
};
|
|
|
|
#define HXXX_HELPER_SEI_COUNT 16
|
|
|
|
struct hxxx_helper
|
|
{
|
|
vlc_object_t *p_obj; /* for logs */
|
|
vlc_fourcc_t i_codec;
|
|
bool b_need_xvcC; /* Need avcC or hvcC */
|
|
|
|
bool b_is_xvcC;
|
|
uint8_t i_nal_length_size;
|
|
union {
|
|
struct {
|
|
struct hxxx_helper_nal sps_list[H264_SPS_ID_MAX + 1];
|
|
struct hxxx_helper_nal pps_list[H264_PPS_ID_MAX + 1];
|
|
uint8_t i_current_sps;
|
|
uint8_t i_sps_count;
|
|
uint8_t i_pps_count;
|
|
} h264;
|
|
struct {
|
|
struct hxxx_helper_nal sps_list[HEVC_SPS_ID_MAX + 1];
|
|
struct hxxx_helper_nal pps_list[HEVC_PPS_ID_MAX + 1];
|
|
struct hxxx_helper_nal vps_list[HEVC_VPS_ID_MAX + 1];
|
|
struct hxxx_helper_nal sei_list[HXXX_HELPER_SEI_COUNT];
|
|
uint8_t i_current_sps;
|
|
uint8_t i_current_vps;
|
|
uint8_t i_sps_count;
|
|
uint8_t i_pps_count;
|
|
uint8_t i_vps_count;
|
|
uint8_t i_sei_count;
|
|
uint8_t i_previous_nal_type;
|
|
} hevc;
|
|
};
|
|
|
|
/* Process the block: do the AnnexB <-> xvcC conversion if needed. If
|
|
* p_config_changed is not NULL, parse nals to detect a SPS/PPS or a video
|
|
* size change. */
|
|
block_t * (*pf_process_block)(struct hxxx_helper *hh, block_t *p_block,
|
|
bool *p_config_changed);
|
|
};
|
|
|
|
void hxxx_helper_init(struct hxxx_helper *hh, vlc_object_t *p_obj,
|
|
vlc_fourcc_t i_codec, bool b_need_xvcC);
|
|
void hxxx_helper_clean(struct hxxx_helper *hh);
|
|
|
|
int hxxx_helper_set_extra(struct hxxx_helper *hh, const void *p_extra,
|
|
size_t i_extra);
|
|
|
|
block_t *h264_helper_get_annexb_config(const struct hxxx_helper *hh);
|
|
block_t *hevc_helper_get_annexb_config(const struct hxxx_helper *hh);
|
|
|
|
block_t *h264_helper_get_avcc_config(const struct hxxx_helper *hh);
|
|
block_t *hevc_helper_get_hvcc_config(const struct hxxx_helper *hh);
|
|
|
|
int hxxx_helper_get_current_picture_size(const struct hxxx_helper *hh,
|
|
unsigned *p_w, unsigned *p_h,
|
|
unsigned *p_vw, unsigned *p_vh);
|
|
|
|
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);
|
|
|
|
int
|
|
hxxx_helper_get_chroma_chroma(const struct hxxx_helper *hh, uint8_t *pi_chroma_format,
|
|
uint8_t *pi_depth_luma, uint8_t *pi_depth_chroma);
|
|
|
|
int hxxx_helper_get_colorimetry(const struct hxxx_helper *hh,
|
|
video_color_primaries_t *p_primaries,
|
|
video_transfer_func_t *p_transfer,
|
|
video_color_space_t *p_colorspace,
|
|
bool *p_full_range);
|
|
|