You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	flacdec: skip all track indices at once instead of looping.
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
This commit is contained in:
		
				
					committed by
					
						 Justin Ruggles
						Justin Ruggles
					
				
			
			
				
	
			
			
			
						parent
						
							c15da5941d
						
					
				
				
					commit
					17c84f4ed2
				
			| @@ -102,7 +102,7 @@ static int flac_read_header(AVFormatContext *s, | ||||
|             uint8_t isrc[13]; | ||||
|             uint64_t start; | ||||
|             const uint8_t *offset; | ||||
|             int i, j, chapters, track, ti; | ||||
|             int i, chapters, track, ti; | ||||
|             if (metadata_size < 431) | ||||
|                 return AVERROR_INVALIDDATA; | ||||
|             offset = buffer + 395; | ||||
| @@ -119,8 +119,7 @@ static int flac_read_header(AVFormatContext *s, | ||||
|                 offset += 14; | ||||
|                 ti = bytestream_get_byte(&offset); | ||||
|                 if (ti <= 0) return AVERROR_INVALIDDATA; | ||||
|                 for (j = 0; j < ti; j++) | ||||
|                     offset += 12; | ||||
|                 offset += ti * 12; | ||||
|                 avpriv_new_chapter(s, track, st->time_base, start, AV_NOPTS_VALUE, isrc); | ||||
|             } | ||||
|         } else { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user