Hi Team,

Is there any way to specify Entropy method to H264 encoder?

AVCodecContext *c_enc = NULL;
c_enc->width =iwidth;// 320;//  c_dec->width;// 352;
        c_enc->height = iheight;// 240;// c_dec->height;// 288;
        //c_enc->sample_aspect_ratio = c_dec->sample_aspect_ratio;

        /// frames per second
        c_enc->time_base = (AVRational){1, fps};
        c_enc->framerate = (AVRational){fps, 1};
        c_enc->gop_size =   10;
        c_enc->max_b_frames = 1;
        c_enc->pix_fmt = AV_PIX_FMT_YUV420P;

How to know which Entropy Method used in H264 encoded stream?

-- 
Thanks & Regards
Vittal Prasad B R
_______________________________________________
Libav-user mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/libav-user

Reply via email to