You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #1050, VideoEncoder is updated to use raw AVDictionary pointers (avFormatOptions_, avCodecOptions) and manual calls to av_dict_free() to clean up those objects.
We should create a UniqueAVDictionary wrapper class (similar to existing UniqueAVFrame) that automatically manages the AVDictionary objects using the RAII pattern, then refactor VideoEncoder to use UniqueAVDictionary and remove manual cleanup calls.