Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Sync
- bitcoin
- Close
- http
- channel
- GO 언어
- Python
- 책
- go언어
- package
- File
- C
- install
- FOR
- Callback
- write
- go
- json
- Golang
- windows
- window
- range
- JavaScript
- 영화
- Linux
- API
- c++
- tcp
- mutex
- 리뷰
Archives
- Today
- Total
목록aacDecoder_DecodeFrame (1)
Code Habit
fdk-aac decoder
압축(인코딩)된 aac데이터를 fdk-aac 라이브러리를 사용하여 decode 하는 예제이다. 결과물은 pcm 데이터로 저장되며 audacity uitl 등을 통해 decode된 음원을 재생해 볼 수 있다. - FDKAACDecoder.h #include "aacdecoder_lib.h" class CFDKAACDecoder { public: CFDKAACDecoder(); ~CFDKAACDecoder(); boolInitialize(); voidDestroy(); intDecode(BYTE* pBuffer, UINT nBufSize); private: HANDLE_AACDECODER m_hDecoder; BOOL m_bInitialized; CStreamInfo m_stream_info; }; - FD..
카테고리 없음
2023. 3. 19. 11:23