> I enable libx264 (--enable libx264 )in my configure options and it works. > But I have an other question. > I know that the function used to encode picture in h263 is static int > encode_picture(MpegEncContext *s, int picture_number) > located at ffmpeg/libavcodec/mpegvideo_enc.c file. Correct me if I mistake. > Then can someone tell me the funtion used to encode picture for h264 and > the file in which I can find this function , please?
There is no native h264 encoder, if you’re using x264 it calls x264_encoder_encode in libx264.c, defined in the x264 header and found in the x264 source encoder/encode.c _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
