http://www.latelee.org/using-gnu-linux/ubuntu-intel-gpu-vaapi.html
http://www.webupd8.org/2012/11/install-mplayer-with-va-api-hardware.html

文章標籤

立你斯 發表在 痞客邦 留言(0) 人氣()

Install Intel / AMD VA-API drivers in Ubuntu


Before installing MPlayer with VA-API support, install the VA-API drivers:

立你斯 發表在 痞客邦 留言(0) 人氣()

http://www.mem.com.tw/article_content.asp?sn=0701020591

 

標準平行的PCI介面納入許多遵循PCI匯流排電源管理介面規格的省電功能,因此,除了根聯合體(Root Complex)之外,其他所有的PCIe裝置都必須支援這些省電功能。此外,PCIe定義一套名為主動式電源管理(Active State Power Management, ASPM)的機制。主動式電源管理則是進一步擴充PCI電源的管理規格。ASPM與標準PCI電源管理規格之間的主要差別在於ASPM是自動運作的機制。  

立你斯 發表在 痞客邦 留言(0) 人氣()

http://udn.com/news/story/7241/1227711-%E9%81%99%E6%9C%9B2025%E5%B9%B4%EF%BC%8F%E6%99%BA%E6%85%A7%E5%95%86%E6%A9%9F-11.1%E5%85%86%E7%BE%8E%E5%85%83

原文網址!! 若有侵權告知!! 立即撤除!!

 

立你斯 發表在 痞客邦 留言(0) 人氣()

 

測試的參數

mplayer -vf tinterlace=0,pp=lb 

立你斯 發表在 痞客邦 留言(0) 人氣()

為什麼需要內核鎖?

多核處理器下,會存在多個行程處於內核態的情況,而在內核態下,行程是可以訪問所有內核資料的,因此要對共用資料進行保護,即互斥處理

 

立你斯 發表在 痞客邦 留言(0) 人氣()

本文轉自如何使用queue_delayed_work函數

1. delayed_workqueue主要用在需要延遲處理任務的驅動中,這些驅動的特性主要是不能使用中斷。

delayed_workqueue的使用步驟如下:

立你斯 發表在 痞客邦 留言(0) 人氣()

今天主機重開又遇到  /dev/VolGroup00/LogVol00: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY

照網友解法 OK

http://heavenamoo712.pixnet.net/blog/post/105520061-linux(redhat)restart%E5%BE%8C%EF%BC%8C%E5%87%BA%E7%8F%BEunexpected-inconsistency%3B-ru

立你斯 發表在 痞客邦 留言(0) 人氣()

  1. */2.6.37/include/linux/types.h:13:2: warning: #warning "Attempt to use kernel headers from user space, see http://kernelnewbies.org/KernelHeaders"

     然後問我這個怎麼消除。我也是第一次注意到這個警告(以前可能有出現,可能我沒有注意吧)。然後我根據後面提供的網址,研讀了一下這份英文資料,發現這個原來是頭檔的使用不當產生的。英文資料翻譯如下:

 

內核頭文件

立你斯 發表在 痞客邦 留言(0) 人氣()

The GCC compiler flags that control unused warnings include:

-Wunused-function
-Wunused-label
-Wunused-parameter
-Wunused-value
-Wunused-variable
-Wunused(=all of the above)

Each of these has a corresponding negative form with "no-" inserted after the W which turns off the warning (in case it was turned on by -Wall, for example). Thus, in your case you should use

-Wno-unused-function

Of course this works for the whole code, not just compile-time asserts. For function-specific behaviour, have a look at Function attributes.

立你斯 發表在 痞客邦 留言(0) 人氣()