mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
20 lines
360 B
C
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
|