[vlc-commits] mmal/converter: fix compilation
    Steve Lhomme 
    git at videolan.org
       
    Wed Oct  7 08:46:15 CEST 2020
    
    
  
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Oct  7 08:46:06 2020 +0200| [9dfe79f2f0c89e101a6fbacb98c104640e472a45] | committer: Steve Lhomme
mmal/converter: fix compilation
Bug introduced in 745b8d13f626e52a4ea4cf37631216fbffab455b when switching to
vlc_picture_chain_t.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9dfe79f2f0c89e101a6fbacb98c104640e472a45
---
 modules/hw/mmal/converter.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/hw/mmal/converter.c b/modules/hw/mmal/converter.c
index 2cb494b3aa..892cace469 100644
--- a/modules/hw/mmal/converter.c
+++ b/modules/hw/mmal/converter.c
@@ -118,7 +118,7 @@ static MMAL_FOURCC_T pic_to_slice_mmal_fourcc(MMAL_FOURCC_T fcc)
 
 static picture_t * pic_fifo_get(vlc_picture_chain_t * const pf)
 {
-    return vlc_picture_chain_PopFront( &pf );
+    return vlc_picture_chain_PopFront( pf );
 }
 
 static void pic_fifo_release_all(vlc_picture_chain_t * const pf)
    
    
More information about the vlc-commits
mailing list