linuxOS_D21X/source/artinchip/aic-mpp/ve/decoder/h264/h264_nal.h
2024-11-29 16:33:21 +08:00

22 lines
408 B
C

/*
* Copyright (C) 2020-2022 Artinchip Technology Co. Ltd
*
* SPDX-License-Identifier: Apache-2.0
*
* author: <qi.xu@artinchip.com>
* Desc: decode nalu (sps/pps/slice)
*
*/
#ifndef _H264_NAL_H_
#define _H264_NAL_H_
#include "h264_decoder.h"
int h264_decode_sps(struct h264_dec_ctx *s);
int h264_decode_pps(struct h264_dec_ctx *s);
int h264_decode_slice_header(struct h264_dec_ctx *s);
#endif