[vlc-commits] videotoolbox: compilation fix

Felix Paul Kühne git at videolan.org
Tue Dec 8 20:56:26 CET 2015


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Tue Dec  8 20:55:56 2015 +0100| [e3ad84701115c825afb99b21b43168bdf30c59d8] | committer: Felix Paul Kühne

videotoolbox: compilation fix

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e3ad84701115c825afb99b21b43168bdf30c59d8
---

 modules/codec/videotoolbox.m |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/codec/videotoolbox.m b/modules/codec/videotoolbox.m
index 61d86e8..8b60eb1 100644
--- a/modules/codec/videotoolbox.m
+++ b/modules/codec/videotoolbox.m
@@ -363,7 +363,7 @@ static int StartVideoToolbox(decoder_t *p_dec, block_t *p_block)
             return VLC_EGENERIC;
         }
 
-        struct nal_sps sps_data;
+        struct h264_nal_sps sps_data;
         i_ret = h264_parse_sps(p_sps_buf,
                                i_sps_size,
                                &sps_data);
@@ -833,7 +833,7 @@ static block_t *H264ProcessBlock(decoder_t *p_dec, block_t *p_block)
                             &i_pps_size);
 
     if (i_ret == VLC_SUCCESS) {
-        struct nal_sps sps_data;
+        struct h264_nal_sps sps_data;
         i_ret = h264_parse_sps(p_sps_buf,
                                i_sps_size,
                                &sps_data);



More information about the vlc-commits mailing list