This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit f0392c908c8dc9ecf43dc11e0bf22fd9ce917e65 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Fri Jan 30 19:11:24 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue Feb 10 19:44:46 2026 +0100 avcodec/flacenc: Use int for AV_OPT_TYPE_INT Necessary for -fshort-enums. Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/flacenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/flacenc.c b/libavcodec/flacenc.c index 48478749d9..ead2c55f10 100644 --- a/libavcodec/flacenc.c +++ b/libavcodec/flacenc.c @@ -57,7 +57,7 @@ enum CodingMode { typedef struct CompressionOptions { int compression_level; int block_time_ms; - enum FFLPCType lpc_type; + int /* enum FFLPCType */ lpc_type; int lpc_passes; int lpc_coeff_precision; int min_prediction_order; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
