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