H.264筆記之一

H264標準參考軟件 各個版本下載:http://iphome.hhi.de/suehring/tml/download/old_jm/

JM8.6工作區包含3個工程(lencod、ldecod、rtpdump),前兩個工程分別對應編解碼。怎樣設置某一工程爲active,怎樣設置工作目錄、程序變量、調試編譯。。

參考 http://blog.csdn.net/stpeace/article/details/8097438


指向一個二維數組的指針:

int **x = NULL; 

x = new int * [4];  //不能寫成 x = new (int*) [10];  

更高維指針參照:先用棧指針x指向堆,在後續用的時候,完全把x當成是數組

http://blog.csdn.net/stpeace/article/details/8104500





發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章