본문 바로가기

dev, tech224

SDL http://www.libsdl.org/intro.ko/toc.html http://www.libsdl.org/cgi/docwiki.cgi/SDL_20API 2006. 8. 11.
insmod와 modprobe의 차이 insmod는 '/lib/modules/커널버전' 의 디렉토리를 뒤져서 해당 모듈이 있으면 올려줍니다. modprobe는 depmod에 의해 생성된 modules.dep 에서 찾아 모듈을 올립니다. 그리고 해당 모듈에 의존성이 있거나 해당모듈보다 선행되어야 하는 모듈이 있으면 그 모듈도 같이 올려줍니다. 이 부분이 insmod와 가장 큰 차이가 있습니다. 예를들어 vfat이란 모듈을 올리기 위해선 fat이란 모듈이 먼저 올라와 있어야 하는데 fat이 올라와 있지 않은상태에서 # insmod vfat 하면 fat에관한 심벌을 찾지못해 vfat 모듈을 올리지 못하지만 # modprobe vfat 을 실행하면 자동으로 fat을 먼저 올리고 그다음 vfat 모듈을 올려줍니다. (커널 컴파일시 fat,vfat을 .. 2006. 8. 10.
Mplayer Arm 포팅 (작성중) *** B/D : Hybus pxa270tkuFedora Core 5, 2.6.17 1. termcap 포팅 (다운) http://fresh.t-systems-sfr.com/linux/src/termcap-2.0.8.tar.gz (설치)#tar zxvf termcap-2.0.8.tar.gz #vi Makefile CC=gcc를 CC=/opt/iwmmxt-1.0.0/bin/arm-linux-gcc 로 수정 ->> (자신의 크로스 컴파일러) CFLAGS=-O -I. -g를 #CFLAGS=-O -I. -g 로 주석 처리 AR=ar을 AR=/opt/iwmmxt-1.0.0/bin/arm-linux-ar 로 수정 prefix = / 를 prefix = /usr/local/arm/termcap(arm용 termcap.. 2006. 8. 10.
RFC3984를 만족해 보이는 RTP 소스 본 소스는http://iphome.hhi.de/suehring/tml/doc/lenc/html/rtp_8c-source.html 에서 발췌하였음을 밝힙니다. Main Page|Data Structures|Directories|File List|Data Fields|Globalslencod » srcrtp.cGo to the documentation of this file.0000100002/*!00003*****************************************************************************00004*00005* \file rtp.c00006*00007* \brief00008* Functions to handle RTP headers and packets .. 2006. 8. 10.