clean up - use google style guide for the RocDecoder class (#101)

* clean up - use google style guide for the RocDecoder class

* make other files/classes to follow the google style guides
이 커밋은 다음에 포함됨:
Aryan Salmanpour
2023-11-29 13:50:38 -05:00
커밋한 사람 GitHub
부모 f8b01f3d1a
커밋 48474fdad9
5개의 변경된 파일84개의 추가작업 그리고 85개의 파일을 삭제
+5 -5
파일 보기
@@ -47,11 +47,11 @@ public:
RocDecoder(RocDecoderCreateInfo &decoder_create_info);
~RocDecoder();
rocDecStatus InitializeDecoder();
rocDecStatus decodeFrame(RocdecPicParams *pPicParams);
rocDecStatus getDecodeStatus(int nPicIdx, RocdecDecodeStatus* pDecodeStatus);
rocDecStatus reconfigureDecoder(RocdecReconfigureDecoderInfo *pDecReconfigParams);
rocDecStatus mapVideoFrame(int pic_idx, void *dev_mem_ptr[3], unsigned int horizontal_pitch[3], RocdecProcParams *vid_postproc_params);
rocDecStatus unMapVideoFrame(int pic_idx);
rocDecStatus DecodeFrame(RocdecPicParams *pic_params);
rocDecStatus GetDecodeStatus(int pic_idx, RocdecDecodeStatus* decode_status);
rocDecStatus ReconfigureDecoder(RocdecReconfigureDecoderInfo *reconfig_params);
rocDecStatus MapVideoFrame(int pic_idx, void *dev_mem_ptr[3], uint32_t horizontal_pitch[3], RocdecProcParams *vid_postproc_params);
rocDecStatus UnMapVideoFrame(int pic_idx);
private:
rocDecStatus InitHIP(int device_id);