Introduction
x264 version compilable by visual studio, generated by Shift Media Project I have forked my own version and put it in my github website: git@github.com:huyunf/x264.git
Code Overview
h = x264_encoder_open( );
for(loop by frame number){
...
encode_frame( );
...
}
The x264_encoder_open()
function does several initial task for the …