decoder/ffmpeg: raise version dependency for avformat_find_stream_info()
This function was added when the libavformat version was 53.2.0, but the actual release 53.2.0 did not have it.
This commit is contained in:
		@@ -443,7 +443,7 @@ ffmpeg_decode(struct decoder *decoder, struct input_stream *input)
 | 
				
			|||||||
		return;
 | 
							return;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53,2,0)
 | 
					#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53,6,0)
 | 
				
			||||||
	const int find_result =
 | 
						const int find_result =
 | 
				
			||||||
		avformat_find_stream_info(format_context, NULL);
 | 
							avformat_find_stream_info(format_context, NULL);
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
@@ -648,7 +648,7 @@ ffmpeg_stream_tag(struct input_stream *is)
 | 
				
			|||||||
		return NULL;
 | 
							return NULL;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53,2,0)
 | 
					#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53,6,0)
 | 
				
			||||||
	const int find_result =
 | 
						const int find_result =
 | 
				
			||||||
		avformat_find_stream_info(f, NULL);
 | 
							avformat_find_stream_info(f, NULL);
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user