This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit debd8528afe797d0061ce40df913f30bf2eb7b0b Author: Kacper Michajłow <[email protected]> AuthorDate: Tue Aug 11 21:34:36 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Wed Aug 12 17:21:07 2026 +0200 avcodec/wavpack: keep flags as unsigned value This is bitfield with flags, keep it as unsigned. Signed-off-by: Kacper Michajłow <[email protected]> --- libavcodec/wavpack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c index 341315373f..87c2ded5e4 100644 --- a/libavcodec/wavpack.c +++ b/libavcodec/wavpack.c @@ -67,7 +67,7 @@ typedef enum { typedef struct WavpackFrameContext { AVCodecContext *avctx; - int frame_flags; + uint32_t frame_flags; int stereo, stereo_in; int joint; uint32_t CRC; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
