mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-11-01 13:03:52 +08:00 
			
		
		
		
	Fix behavior when exporting output pad with default query_formats()
Commited in SoC by Bobby Bingham on 2007-08-08 04:25:08 Originally committed as revision 12697 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		| @@ -257,8 +257,10 @@ static int *graph_out_query_formats(AVFilterLink *link) | ||||
| { | ||||
|     AVFilterLink *link2 = get_intern_output_link(link); | ||||
|  | ||||
|     if(!link2 || !link2->src->output_pads[link2->srcpad].query_formats) | ||||
|     if(!link2) | ||||
|         return avfilter_make_format_list(0); | ||||
|     if(!link2->src->output_pads[link2->srcpad].query_formats) | ||||
|         return avfilter_default_query_output_formats(link2); | ||||
|     return link2->src->output_pads[link2->srcpad].query_formats(link2); | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Vitor Sessak
					Vitor Sessak