Files
luban-lite-t3e-pro/packages/artinchip/mpp/ve/decoder/h264/h264_nal.h
刘可亮 7bbc029dae v1.0.0
2023-08-30 16:21:18 +08:00

20 lines
360 B
C

/*
* Copyright (C) 2020-2022 Artinchip Technology Co. Ltd
*
* 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