[FFmpeg-devel] [PATCH] avformat/avidec: Simplify compile-time check for DV demuxer

Peter Ross pross at xvid.org
Wed Jan 27 00:17:49 EET 2021


On Tue, Jan 26, 2021 at 02:21:27PM +0100, Andreas Rheinhardt wrote:
> 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

ok

-- Peter
(A907 E02F A6E5 0CD2 34CD 20D2 6760 79C5 AC40 DD6B)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <https://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20210127/055d595e/attachment.sig>


More information about the ffmpeg-devel mailing list