Print the frame number if decoding fails

This commit is contained in:
Cameron Gutman
2022-10-04 23:38:54 -05:00
parent 9e8a4cab7b
commit bc68aad67b
3 changed files with 25 additions and 17 deletions
+2 -5
View File
@@ -84,11 +84,8 @@ private:
SDL_Thread* m_DecoderThread;
SDL_atomic_t m_DecoderThreadShouldQuit;
typedef struct {
uint64_t enqueueTimeMs;
uint32_t presentationTimeMs;
} FrameInfoTuple;
QQueue<FrameInfoTuple> m_FrameInfoQueue;
// Data buffers in the queued DU are not valid
QQueue<DECODE_UNIT> m_FrameInfoQueue;
static const uint8_t k_H264TestFrame[];
static const uint8_t k_HEVCMainTestFrame[];