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

Cette révision appartient à :
jeffqjiangNew
2025-02-25 20:43:46 -05:00
révisé par GitHub
Parent ad0bec2f14
révision a78f6730c8
6 fichiers modifiés avec 6 ajouts et 6 suppressions
+1 -1
Voir le fichier
@@ -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 {