I'm trying to encode video frames into H264 format using ffmpeg in C. While configuring the encoder properties I don't see how to set the frame encoding method as CABAC (lossless). Any idea?
Thanks in advance.
I'm trying to encode video frames into H264 format using ffmpeg in C. While configuring the encoder properties I don't see how to set the frame encoding method as CABAC (lossless). Any idea?
Thanks in advance.
Copyright © 2021 Jogjafile Inc.
Set the
coder_type
value of the encoder's context toFF_CODER_TYPE_AC
.