전체 글
-
How to use Post-review with Perforce.,postreview, post, review카테고리 없음 2011. 8. 18. 21:23
// u can create new panding list // and will open the some txt then do write status to "panding" p4 change // u can edit panding list contes. p4 change -s change list number // find out infor p4 describe -s 11111 // u can add to panding list with editing. p4 edit -c 11111 //depot//bulaadfasdfasf..h // p4 submit -c number // u can upload different files and etc automatically . it is python apple...
-
Useful example about container of SET when coding with STL.helpful post 2011. 8. 18. 01:41
std::set bandwidth; //build with ascending order bandwidth.insert(10); bandwidth.insert(1); bandwidth.insert(90); bandwidth.insert(0); int findedNumber = 1; //std::set::iterator FindIter = bandwidth.find( findedNumber ); std::set::iterator FindIter = bandwidth.find( findedNumber ); int index = 0; if( FindIter != bandwidth.end() ) { bandwidth.erase( FindIter );..
-
How to decode a packetized MPEG4A-LATMMedia_Dev 2011. 7. 4. 15:48
http://www.rfc-editor.org/rfc/rfc3016.txt If you need compatibility with 3g , then use it . LATM . This is explained LATEM follow to RFC. 1.2 MPEG-4 Audio RTP payload format MPEG-4 Audio is a new kind of audio standard that integrates many different types of audio coding tools. Low-overhead MPEG-4 Audio Transport Multiplex (LATM) manages the sequences of audio data with relatively small overhead..