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

This commit is contained in:
jeffqjiangNew
2025-02-25 20:43:46 -05:00
zatwierdzone przez GitHub
rodzic ad0bec2f14
commit a78f6730c8
6 zmienionych plików z 6 dodań i 6 usunięć
+1 -1
Wyświetl plik
@@ -58,7 +58,7 @@ rocDecStatus RocVideoParser::Initialize(RocdecParserParams *pParams) {
return ROCDEC_NOT_INITIALIZED;
}
// Initialize callback function pointers
pfn_sequece_cb_ = pParams->pfn_sequence_callback; /**< Called before decoding frames and/or whenever there is a fmt change */
pfn_sequence_cb_ = pParams->pfn_sequence_callback; /**< Called before decoding frames and/or whenever there is a fmt change */
pfn_decode_picture_cb_ = pParams->pfn_decode_picture; /**< Called when a picture is ready to be decoded (decode order) */
pfn_display_picture_cb_ = pParams->pfn_display_picture; /**< Called whenever a picture is ready to be displayed (display order) */
pfn_get_sei_message_cb_ = pParams->pfn_get_sei_msg; /**< Called when all SEI messages are parsed for particular frame */