2017-05-11 7 views
0

私はアンドロイド用のVLCのクローンを持っていますが、Windowsのvlcとは違って、UIのビデオフィルタのリファレンスはありませんが、VLCにコードからビデオフィルタをロードさせようとします。クラスVLCOptions.javaは、LibVLCに渡されるオプションのArrayListを作成します。私はビデオフィルタのオプションを追加する場合:VLCフィルタのロード

options.add("--video-filter=mirror"); 

を私はこれらのログを取得:

05-11 16:02:07.751 13274-13274/? D/LGEmail: [Secret] anonymous class instance (dummy) (at SecretFilterFactory.java newInstance 18)[v:null] 
core stream: looking for stream_filter module matching "prefetch,cache_read": 11 candidates 
core stream: using stream_filter module "cache_read" 
core stream: looking for stream_filter module matching "any": 11 candidates 
core stream: no stream_filter modules matched 
core stream: looking for stream_filter module matching "record": 11 candidates 
core stream: using stream_filter module "record" 
core stream: looking for stream_filter module matching "prefetch,cache_read": 11 candidates 
core stream: using stream_filter module "cache_read" 
core stream: looking for stream_filter module matching "prefetch,cache_read": 11 candidates 
core stream: using stream_filter module "cache_read" 
core filter: looking for video filter module matching "mirror": 24 candidates 
core filter: no video filter modules matched 
core video output: Failed to create video filter 'mirror' 
core video output: Failed to add filter 'mirror' 
core stream: looking for stream_filter module matching "prefetch,cache_read": 11 candidates 
core stream: using stream_filter module "cache_read" 
core stream: looking for stream_filter module matching "prefetch,cache_read": 11 candidates 
core stream: using stream_filter module "cache_read" 

** Windows上で、それが正常に動作します**

私の質問は、どこでどのようにVLCの負荷フィルタであります? VLCロードフィルタの仕組みについてAndroidとWindowsを比較すると違いはありますか?

は、最終的なVLCアプリに追加されないモジュールのリストに設定する可変VLC_MODULE_BLACKLISTがあるファイルcompile-libvlc.shであなたに

答えて

0

ありがとうございます。 明らかにミラーモジュールはそのリストにあります。私はこのブラックリストのドキュメントを見つけることができませんでした。