This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new d33403ba50 avfilter/buffersrc: use 1 << n for flags (cosmetic)
d33403ba50 is described below

commit d33403ba505fa949e14031e9c534774f9185cb79
Author:     Niklas Haas <[email protected]>
AuthorDate: Thu Mar 26 15:34:01 2026 +0100
Commit:     Niklas Haas <[email protected]>
CommitDate: Sun Mar 29 09:38:01 2026 +0000

    avfilter/buffersrc: use 1 << n for flags (cosmetic)
    
    Signed-off-by: Niklas Haas <[email protected]>
---
 libavfilter/buffersrc.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavfilter/buffersrc.h b/libavfilter/buffersrc.h
index c7225b6752..75824d964d 100644
--- a/libavfilter/buffersrc.h
+++ b/libavfilter/buffersrc.h
@@ -38,19 +38,19 @@ enum {
     /**
      * Do not check for format changes.
      */
-    AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT = 1,
+    AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT = 1 << 0,
 
     /**
      * Immediately push the frame to the output.
      */
-    AV_BUFFERSRC_FLAG_PUSH = 4,
+    AV_BUFFERSRC_FLAG_PUSH = 1 << 2,
 
     /**
      * Keep a reference to the frame.
      * If the frame if reference-counted, create a new reference; otherwise
      * copy the frame data.
      */
-    AV_BUFFERSRC_FLAG_KEEP_REF = 8,
+    AV_BUFFERSRC_FLAG_KEEP_REF = 1 << 3,
 
 };
 

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to