* rocDecode: Fix a typo in new sequence callback function name. (#520)

[ROCm/rocdecode commit: a78f6730c8]
This commit is contained in:
jeffqjiangNew
2025-02-25 20:43:46 -05:00
کامیت شده توسط GitHub
والد ca9451d891
کامیت 4e8f655fde
6فایلهای تغییر یافته به همراه6 افزوده شده و 6 حذف شده
@@ -399,7 +399,7 @@ ParserResult AvcVideoParser::NotifyNewSps(AvcSeqParameterSet *p_sps) {
video_format_params_.seqhdr_data_length = 0;
// callback function with RocdecVideoFormat params filled out
if (pfn_sequece_cb_(parser_params_.user_data, &video_format_params_) == 0) {
if (pfn_sequence_cb_(parser_params_.user_data, &video_format_params_) == 0) {
ERR("Sequence callback function failed.");
return PARSER_FAIL;
} else {