vlc | branch: master | Francois Cartegnie <[email protected]> | Sat Feb  7 
19:56:14 2015 +0100| [1f0c9de8b05929cd24cc23d0ec26678ce5ba2d8b] | committer: 
Francois Cartegnie

demux: mpeg: add some more DTS header checks (fix #13843)

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

 modules/demux/mpeg/es.c |   25 ++++++++++++++++++++++---
 1 file changed, 22 insertions(+), 3 deletions(-)

diff --git a/modules/demux/mpeg/es.c b/modules/demux/mpeg/es.c
index d885d63..7bb9ace 100644
--- a/modules/demux/mpeg/es.c
+++ b/modules/demux/mpeg/es.c
@@ -1019,10 +1019,29 @@ static int DtsCheckSync( const uint8_t *p_peek, int 
*pi_samples )
                                     &i_frame_length,
                                     &i_audio_mode );
 
-    if( i_frame_size != VLC_EGENERIC && i_frame_size <= 8192 )
-        return VLC_SUCCESS;
-    else
+    if( i_frame_size < 95 || i_frame_size > 16383 )
+        return VLC_EGENERIC;
+
+    switch( i_sample_rate )
+    {
+        case 0b0001:
+        case 0b0010:
+        case 0b0011:
+        case 0b0110:
+        case 0b0111:
+        case 0b1000:
+        case 0b1011:
+        case 0b1100:
+        case 0b1101:
+            break;
+        default:
+            return VLC_EGENERIC;
+    }
+
+    if( !i_bit_rate || i_bit_rate > 0x11101 )
         return VLC_EGENERIC;
+
+    return VLC_SUCCESS;
 }
 
 static int DtsProbe( demux_t *p_demux, int64_t *pi_offset )

_______________________________________________
vlc-commits mailing list
[email protected]
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to