]> git.sesse.net Git - vlc/blobdiff - include/vlc_block.h
modifications for RTP reordering:
[vlc] / include / vlc_block.h
index d2ad6c463ac6fc8bb0dd0856eec057f64c7cca03..5048b6c6bf91c4d8ee563b419af3d89d0e0414dc 100644 (file)
@@ -77,6 +77,7 @@ typedef struct block_sys_t block_sys_t;
 struct block_t
 {
     block_t     *p_next;
+    block_t     *p_prev;
 
     uint32_t    i_flags;
 
@@ -87,6 +88,8 @@ struct block_t
     int         i_samples; /* Used for audio */
     int         i_rate;
 
+    uint16_t   i_seqno;   /* Used for RTP */
+
     int         i_buffer;
     uint8_t     *p_buffer;