diff mbox series

[FFmpeg-devel] avformat/mux: Remove check for AVFMT_ALLOW_FLUSH

Message ID GV1P250MB0737C9361C37D0A5D337585B8F302@GV1P250MB0737.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit a990e6fa01cb4436e26d0aa628307305cd475bef
Headers show
Series [FFmpeg-devel] avformat/mux: Remove check for AVFMT_ALLOW_FLUSH | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt March 23, 2024, 12:09 a.m. UTC
Due to the bump it is now certain that all devices
that support flushing have the proper internal flag set.
(Notice that the check for LIBAVFORMAT_VERSION was wrong.)

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavformat/mux.c | 6 ------
 1 file changed, 6 deletions(-)

Comments

Andreas Rheinhardt March 25, 2024, 1:55 a.m. UTC | #1
Andreas Rheinhardt:
> Due to the bump it is now certain that all devices
> that support flushing have the proper internal flag set.
> (Notice that the check for LIBAVFORMAT_VERSION was wrong.)
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
>  libavformat/mux.c | 6 ------
>  1 file changed, 6 deletions(-)
> 
> diff --git a/libavformat/mux.c b/libavformat/mux.c
> index f23eb0188d..630204a8ec 100644
> --- a/libavformat/mux.c
> +++ b/libavformat/mux.c
> @@ -1236,13 +1236,7 @@ int av_write_frame(AVFormatContext *s, AVPacket *in)
>      int ret;
>  
>      if (!in) {
> -#if FF_API_ALLOW_FLUSH || LIBAVFORMAT_VERSION_MAJOR >= 61
> -        // Hint: The pulse audio output device has this set,
> -        // so we can't switch the check to FF_OFMT_FLAG_ALLOW_FLUSH immediately.
> -        if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
> -#else
>          if (ffofmt(s->oformat)->flags_internal & FF_OFMT_FLAG_ALLOW_FLUSH) {
> -#endif
>              ret = ffofmt(s->oformat)->write_packet(s, NULL);
>              flush_if_needed(s);
>              if (ret >= 0 && s->pb && s->pb->error < 0)

Will apply this patchset tomorrow unless there are objections.

- Andreas
diff mbox series

Patch

diff --git a/libavformat/mux.c b/libavformat/mux.c
index f23eb0188d..630204a8ec 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -1236,13 +1236,7 @@  int av_write_frame(AVFormatContext *s, AVPacket *in)
     int ret;
 
     if (!in) {
-#if FF_API_ALLOW_FLUSH || LIBAVFORMAT_VERSION_MAJOR >= 61
-        // Hint: The pulse audio output device has this set,
-        // so we can't switch the check to FF_OFMT_FLAG_ALLOW_FLUSH immediately.
-        if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
-#else
         if (ffofmt(s->oformat)->flags_internal & FF_OFMT_FLAG_ALLOW_FLUSH) {
-#endif
             ret = ffofmt(s->oformat)->write_packet(s, NULL);
             flush_if_needed(s);
             if (ret >= 0 && s->pb && s->pb->error < 0)