[FFmpeg-devel] [PATCH] avformat/avidec: Simplify compile-time check for DV demuxer
Andreas Rheinhardt
andreas.rheinhardt at gmail.com
Tue Jan 26 15:21:27 EET 2021
1b373b41d940e3058cdfb3d17703e23ed665353c made it a bit harder to find
out that a call to avpriv_dv_produce_packet is dead when the DV demuxer
is disabled; too hard for GCC on -O0. So simplify the check a bit.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
---
libavformat/avidec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index e92a449969..79000f3e81 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -1483,7 +1483,7 @@ resync:
}
}
- if (dv_demux) {
+ if (CONFIG_DV_DEMUXER && dv_demux) {
AVBufferRef *avbuf = pkt->buf;
size = avpriv_dv_produce_packet(avi->dv_demux, pkt,
pkt->data, pkt->size, pkt->pos);
--
2.25.1
More information about the ffmpeg-devel
mailing list