Development 썸네일형 리스트형 [Python]utf-8 확인 코드 파이선을 이용한 문자열 UTF-8 코드 확인 방법 unicode('비디오', 'utf-8').encode('utf-8') 더보기 [Development]iconv - iconv? * HomePage : http://www.gnu.org/software/libiconv/ * 문자 인코딩간 변환을 수행하는 라이브러리 - iconv 예제 #include #include #include #include # define BTN_VIDEO_LB "비디오" int euckr2utf8( char *inbuf, char *outbuf ) { size_t inbytesleft; size_t outbyteleft; char *inbuf_p = inbuf; char *outbuf_p = outbuf; iconv_t cd = iconv_open( "UTF8", "EUC-KR" ); if ( cd < 0 ) { perror( "iconv" ); return 1; } inbytesleft .. 더보기 [Development]Intel IPP (Integrated Performance Primitives) - Intel IPP ? Intel® Integrated Performance Primitives (Intel® IPP) is an extensive library of multi-core-ready, highly optimized software functions for multimedia data processing, and communications applications. 인텔 IPP는 멀티코어에서의 확장 라이브러리다, 멀티미디어 데이터 처리와 통신 어플리케이션에 가장 최적화되어진 소프트웨어 함수들이다. * Intel IPP HomePage는 검색을 하면 간단히 찾을 수 있다. (링크가 바뀔수 있어 가능하면 링크하지 않는다.) - Intel IPP에는 어떤 내용들이 있나? Video Decode/.. 더보기 이전 1 ··· 5 6 7 8 다음