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 | 29 | 30 | 31 |
Tags
- Callback
- Python
- package
- Golang
- window
- http
- range
- GO 언어
- go언어
- go
- install
- windows
- c++
- 영화
- Sync
- bitcoin
- 책
- Close
- JavaScript
- tcp
- C
- write
- FOR
- json
- File
- channel
- 리뷰
- mutex
- API
- Linux
Archives
- Today
- Total
목록aacDecoder_Fill (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