nutdec: fix type of intermediate variable for ts calculation.
Prior to this it could theoretically become negative and read out of array. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		
							parent
							
								
									3dc24600ba
								
							
						
					
					
						commit
						6ab1166c77
					
				@ -527,7 +527,8 @@ static int decode_syncpoint(NUTContext *nut, int64_t *ts, int64_t *back_ptr)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    AVFormatContext *s = nut->avf;
 | 
					    AVFormatContext *s = nut->avf;
 | 
				
			||||||
    AVIOContext *bc    = s->pb;
 | 
					    AVIOContext *bc    = s->pb;
 | 
				
			||||||
    int64_t end, tmp;
 | 
					    int64_t end;
 | 
				
			||||||
 | 
					    uint64_t tmp;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    nut->last_syncpoint_pos = avio_tell(bc) - 8;
 | 
					    nut->last_syncpoint_pos = avio_tell(bc) - 8;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user