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