<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[学无止境]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/yyingwei</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; yyingwei]]></copyright><item><title><![CDATA[vs2008, qt生成库文件 以及qt应用程序调用库文件方法]]></title><link>https://blog.csdn.net/yyingwei/article/details/44197921</link><guid>https://blog.csdn.net/yyingwei/article/details/44197921</guid><author>yyingwei</author><pubDate>Wed, 11 Mar 2015 14:08:04 +0800</pubDate><description><![CDATA[第一种方法：
vs+qt创建qt库文件工程，创建工程中选择生成静态库(lib)，这样生成的文件为静态库；
如下：




生成lib后，把头文件及lib文件拷贝到应用程序识别的目录，修改应用程序项目工程属性，把lib链接加到工程中，
这样代码中即可使用lib里面的公共接口；
第二种方法：
vs+qt生成dll和lib文件，这样生成库工程会自动添加代码：
#ifdef TEST]]></description><category></category></item><item><title><![CDATA[linux环境，如何制作deb安装包？]]></title><link>https://blog.csdn.net/yyingwei/article/details/25196993</link><guid>https://blog.csdn.net/yyingwei/article/details/25196993</guid><author>yyingwei</author><pubDate>Wed, 07 May 2014 13:21:32 +0800</pubDate><description><![CDATA[主要涉及的命令：
dpkg-deb -b xxx xxx.deb
dpkg]]></description><category></category></item><item><title><![CDATA[yuv420 yv12 与RGB转换算法]]></title><link>https://blog.csdn.net/yyingwei/article/details/22649575</link><guid>https://blog.csdn.net/yyingwei/article/details/22649575</guid><author>yyingwei</author><pubDate>Mon, 31 Mar 2014 10:11:24 +0800</pubDate><description><![CDATA[bool YV12_to_RGB24(unsigned char* pYV12, unsigned char* pRGB24, int iWidth, int iHeight)
{
 if(!pYV12 || !pRGB24)
    return false;
	
 const long nYLen = long(iHeight * iWidth);
 const int nHfWidth = ]]></description><category></category></item><item><title><![CDATA[sage plugin for vlc]]></title><link>https://blog.csdn.net/yyingwei/article/details/19404625</link><guid>https://blog.csdn.net/yyingwei/article/details/19404625</guid><author>yyingwei</author><pubDate>Tue, 18 Feb 2014 12:38:33 +0800</pubDate><description><![CDATA[Overview 

The SAGE-enabled version of vlc that was available for some time from EVL was first constructed
 a long time ago (actually for vlc version 0.8.5) and is now difficult to compile due to d]]></description><category></category></item><item><title><![CDATA[Linux下vlc以root用户运行]]></title><link>https://blog.csdn.net/yyingwei/article/details/19326415</link><guid>https://blog.csdn.net/yyingwei/article/details/19326415</guid><author>yyingwei</author><pubDate>Mon, 17 Feb 2014 10:04:27 +0800</pubDate><description><![CDATA[1，如果是源码编译，请使用参数--enable-root
2，使用vim修改编译生成的二进制可执行程序，如vim vlc，搜索geteuid，将其替换为getppid即可]]></description><category></category></item><item><title><![CDATA[Win32Compile---ubuntu 12.04下交叉编译win32 vlc]]></title><link>https://blog.csdn.net/yyingwei/article/details/17217733</link><guid>https://blog.csdn.net/yyingwei/article/details/17217733</guid><author>yyingwei</author><pubDate>Mon, 09 Dec 2013 10:13:27 +0800</pubDate><description><![CDATA[原文请参考：https://wiki.videolan.org/Win32Compile/http://

configure过程中如果出现error: LibVLC requires mingw-runtime version 3.15 or higher, or mingw-w64 version 3.0 or higher!

是因为mingw-64版本问题，版本必须为最新版本，更新]]></description><category></category></item><item><title><![CDATA[windows 平台编译vlc源码]]></title><link>https://blog.csdn.net/yyingwei/article/details/17169669</link><guid>https://blog.csdn.net/yyingwei/article/details/17169669</guid><author>yyingwei</author><pubDate>Fri, 06 Dec 2013 16:44:22 +0800</pubDate><description><![CDATA[原文请参考：

https://wiki.videolan.org/Win32CompileMSYSNew







Contents
 [hide] 

1 Introduction

1.1 About1.2 Acknowledgements
2 Windows
 tools needed

2.1 Text
 editor2.2 Unzip
 U]]></description><category></category></item><item><title><![CDATA[linux编译VLC,常见错误]]></title><link>https://blog.csdn.net/yyingwei/article/details/17116579</link><guid>https://blog.csdn.net/yyingwei/article/details/17116579</guid><author>yyingwei</author><pubDate>Wed, 04 Dec 2013 13:45:42 +0800</pubDate><description><![CDATA[./configure: 
configure: error: C compiler cannot create executables
=>sudo apt-get install build-essential

error:BuggyGNU/libc (version 2.5 - 2.7) present. VLC would crash; there is no viable
w]]></description><category></category></item><item><title><![CDATA[qt实现颜色下拉框控件]]></title><link>https://blog.csdn.net/yyingwei/article/details/9667275</link><guid>https://blog.csdn.net/yyingwei/article/details/9667275</guid><author>yyingwei</author><pubDate>Wed, 31 Jul 2013 14:15:17 +0800</pubDate><description><![CDATA[效果如下图：




代码：
ColorCombox.h

#ifndef COLORCOMBOX_H
#define COLORCOMBOX_H

#include 

class ColorCombox : public QToolButton
{
    Q_OBJECT

public:
    ColorCombox(QWidget *parent = 0);
    ~]]></description><category></category></item><item><title><![CDATA[一串十六进制以每两位形式转换成字符串]]></title><link>https://blog.csdn.net/yyingwei/article/details/9293589</link><guid>https://blog.csdn.net/yyingwei/article/details/9293589</guid><author>yyingwei</author><pubDate>Wed, 10 Jul 2013 18:13:40 +0800</pubDate><description><![CDATA[例如 

121209055822010053
转换后为 
cc953a161035




#include 
#include 

int main()
{
	char hex[200];
	char s[100];
	strcpy(hex,"98e1e97b3294cd43260aa8766dd21b9e354f5926d34f9b5fa510e84937316992a74]]></description><category></category></item><item><title><![CDATA[Linux下libpcap的安装与使用]]></title><link>https://blog.csdn.net/yyingwei/article/details/8955081</link><guid>https://blog.csdn.net/yyingwei/article/details/8955081</guid><author>yyingwei</author><pubDate>Tue, 21 May 2013 14:25:05 +0800</pubDate><description><![CDATA[1， 环境： Ubuntu10.04 + libpcap-1.4.0.tar.gz
2，Libpcap下载： 官方地址-http://www.tcpdump.org/#latest-release 即可下载最新版本的libpcap。
3，解压libpcap-1.4.0.tar.gz： tar -zxvf libpcap-1.4.0.tar.gz
4，配置生成makefile文件：cd到lib]]></description><category></category></item><item><title><![CDATA[android apk 反编译与防止反编译]]></title><link>https://blog.csdn.net/yyingwei/article/details/8674077</link><guid>https://blog.csdn.net/yyingwei/article/details/8674077</guid><author>yyingwei</author><pubDate>Thu, 14 Mar 2013 17:16:54 +0800</pubDate><description><![CDATA[android 项目导出apk安装文件其实就是一个压缩包，里面包含了所需资源和源代码，当然商业性质的应用都有防止反编译，就算反编译后扔让你无法看懂代码，本文简要介绍反编译方法和所用工具，利用反编译进行代码copy和盗取机密，本人是不赞成的。
所用工具：apktool，dex2jar.bat，jd-gui
下面主要介绍使用dex2jar.bat 对源代码反编译步骤：
1，首先把apk文件改名为]]></description><category></category></item><item><title><![CDATA[设置alertdialog 透明度]]></title><link>https://blog.csdn.net/yyingwei/article/details/8660185</link><guid>https://blog.csdn.net/yyingwei/article/details/8660185</guid><author>yyingwei</author><pubDate>Mon, 11 Mar 2013 17:16:58 +0800</pubDate><description><![CDATA[如下：

Builder builder = new AlertDialog.Builder(getSherlockActivity());		
		builder.setTitle(title);
		builder.setPositiveButton(R.string.rating_continue,
				new DialogInterface.OnClickListener() {]]></description><category></category></item><item><title><![CDATA[如何设置alertdialog，button enable 和 disable？]]></title><link>https://blog.csdn.net/yyingwei/article/details/8660011</link><guid>https://blog.csdn.net/yyingwei/article/details/8660011</guid><author>yyingwei</author><pubDate>Mon, 11 Mar 2013 16:43:51 +0800</pubDate><description><![CDATA[如下：
Builder builder = new AlertDialog.Builder(getSherlockActivity());		
		builder.setTitle("test");
		builder.setPositiveButton(R.string.rating_continue,
				new DialogInterface.OnClickListener() {]]></description><category></category></item><item><title><![CDATA[android rating bar style]]></title><link>https://blog.csdn.net/yyingwei/article/details/8658238</link><guid>https://blog.csdn.net/yyingwei/article/details/8658238</guid><author>yyingwei</author><pubDate>Mon, 11 Mar 2013 10:31:31 +0800</pubDate><description><![CDATA[请看原文：http://kozyr.zydako.net/2010/05/23/pretty-ratingbar/

Android is a great development platform. Numerous built-in components and widgets simplify developer’s life greatly, and Intents are just a]]></description><category></category></item><item><title><![CDATA[java语言解析csv文件]]></title><link>https://blog.csdn.net/yyingwei/article/details/8609547</link><guid>https://blog.csdn.net/yyingwei/article/details/8609547</guid><author>yyingwei</author><pubDate>Mon, 25 Feb 2013 14:52:35 +0800</pubDate><description><![CDATA[/*
		Input CSV file:
		"one","two","three","four"
		"Monday", "Tuesday", "Wednesday", "Thursday"
		*/
		 
		/*
		Output would be:
		Line # 1, Token # 1, Token : "one"
		Line # 1, Token # 2, Token : "t]]></description><category></category></item><item><title><![CDATA[jni 文档]]></title><link>https://blog.csdn.net/yyingwei/article/details/8608900</link><guid>https://blog.csdn.net/yyingwei/article/details/8608900</guid><author>yyingwei</author><pubDate>Mon, 25 Feb 2013 12:16:30 +0800</pubDate><description><![CDATA[转载: http://docs.oracle.com/javase/1.4.2/docs/guide/jni/spec/jniTOC.html


Contents




1. Introduction


Java Native Interface Overview


Background


JDK 1.0 Native Method Interface]]></description><category></category></item><item><title><![CDATA[用javah 导出类的头文件， 常见的错误及正确的使用方法]]></title><link>https://blog.csdn.net/yyingwei/article/details/8585113</link><guid>https://blog.csdn.net/yyingwei/article/details/8585113</guid><author>yyingwei</author><pubDate>Sun, 17 Feb 2013 14:04:56 +0800</pubDate><description><![CDATA[********************************************************************************
用javah 导出类的头文件， 常见的错误及正确的使用方法
********************************************************************************
正确的使用]]></description><category></category></item><item><title><![CDATA[POCO C++ lib开发环境构建]]></title><link>https://blog.csdn.net/yyingwei/article/details/8562337</link><guid>https://blog.csdn.net/yyingwei/article/details/8562337</guid><author>yyingwei</author><pubDate>Fri, 01 Feb 2013 11:15:33 +0800</pubDate><description><![CDATA[Welcome



Thank you for downloading the POCO C++ Libraries and welcome to the growing community of POCO C++ Libraries users. This document will help you in getting a smooth ride while installing]]></description><category></category></item><item><title><![CDATA[Google Geocoding API---地理编码与反向地理编码]]></title><link>https://blog.csdn.net/yyingwei/article/details/8562192</link><guid>https://blog.csdn.net/yyingwei/article/details/8562192</guid><author>yyingwei</author><pubDate>Fri, 01 Feb 2013 10:45:28 +0800</pubDate><description><![CDATA[什么是地理编码

地理编码是将地址（如“1600 Amphitheatre Parkway, Mountain View, CA”）转换为地理坐标（如纬度 37.423021 和经度 -122.083739）的过程，您可以根据该地理坐标放置标记或定位地图。Google Geocoding API 可让您通过 HTTP 请求直接访问地理编码器。此外，该服务还可让您执行反向操作（将坐标转换为地址）]]></description><category></category></item></channel></rss>