Enum with functions in C -
while examine source code of ffmpeg, see line:
enum avdurationestimationmethod av_fmt_ctx_get_duration_estimation_method (const avformatcontext* ctx);
what functionality of enum
here?
av_fmt_ctx_get_duration_estimation_method
function returns object of enum type avdurationestimationmethod
.
Comments
Post a Comment