https://stackoverflow.com/questions/46691186/how-to-clone-a-project-from-github-but-use-bitbucket-as-remote-repository
原理:
- 把github的origin改成另一個名稱, e.g., upstream
- 新增origin remote 到bitbucket
- push 到新origin remote
https://github.com/eranif/codelite/issues/795
D:\TestArea\MyCustomProject
and uses makefile
for the build process.D:\TestArea\MyCustomProject
( you can check the option 'create the project under a separate directory' )http://blog.csdn.net/leixiaohua1020/article/details/14214705
http://blog.csdn.net/leixiaohua1020/article/details/11800877
http://blog.csdn.net/leixiaohua1020/article/details/45001033
http://blog.csdn.net/leixiaohua1020/article/details/42078645
YASM Setup
Download YASM executable from http://yasm.tortall.net/Download.html. You have to download the "general use" binaries and NOT the ones for VS2010. Either Win32 or Win64 binaries support outputting object files for both architectures so that should not matter. The last tested version was yasm-1.3.0-win64.exe.
Rename the downloaded executable to yasm.exe and place it in your MSYS2 path. E.g.C:\msys64\usr\bin\yasm.exe.
http://blog.sina.com.cn/s/blog_51396f890102f061.html
到程式39行,新增一行
pParam->i_threads = 1;
強制thread為1就解決delay encode的問題,但是效能會比較差。
http://gentlelogic.blogspot.tw/2011/11/exploring-h264-part-2-h264-bitstream.html
http://guoh.org/lifelog/2013/10/h-264-bit-stream-sps-pps-idr-nalu/
The h.264 Sequence Parameter Set
https://cardinalpeak.com/blog/the-h-264-sequence-parameter-set/
http://www.programgo.com/article/73452314422/
http://www.yaosansi.com/post/how-to-distinguish-between-I-frame-and-P-frame-H264-video-streams/
https://www.ptt.cc/bbs/AVEncode/M.1305719689.A.615.html
http://forum.doom9.org/showthread.php?t=149122
https://trac.ffmpeg.org/wiki/FFprobeTips
gcc -shared -o your_dll.dll your_dll_src.c -Wl,--output-def,your_dll.def
lib /def:your_dll.def
extern "C" {
include "openssl.h"
}
pacman --needed -Sy bash pacman pacman-mirrors msys2-runtime
pacman -Su
pacman -S git
pacman -S mingw-w64-i686-gcc
pacman -S mingw-w64-x86_64-gcc
pacman -S gcc
pacman -S gdb
pacman -S make
Generic
display views
|
Model Name as suffix name, e.g.,
author_xxx.html
|
DetailView
|
_detail.html
|
ListView
|
_list.html
|
|
|
Generic
editing views
|
|
FormView
|
|
CreateView
|
_form.html
|
UpdateView
|
_form.html
|
DeleteView
|
_confirm_delete.html
|
|
|