/// <summary>
 /// <see cref="av_find_program_from_stream(AVFormatContext*, AVProgram*, int)"/>
 /// </summary>
 public MediaProgram?FindProgramFromStream(MediaProgram?last, int index)
 => MediaProgram.FromNativeOrNull(av_find_program_from_stream(this, last, index));
 /// <summary>
 /// <see cref="av_new_program(AVFormatContext*, int)"/>
 /// </summary>
 public MediaProgram NewProgram(int id) => MediaProgram.FromNative(av_new_program(this, id));