| 
									
										
										
										
											2008-08-08 18:32:20 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-18 17:15:17 +00:00
										 |  |  | #include "config.h"
 | 
					
						
							| 
									
										
										
										
											2008-08-08 18:32:20 +00:00
										 |  |  | #include "avutil.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-04-20 14:45:34 +00:00
										 |  |  |  * @file | 
					
						
							| 
									
										
										
										
											2008-08-08 18:32:20 +00:00
										 |  |  |  * various utility functions | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unsigned avutil_version(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-08-08 19:50:35 +00:00
										 |  |  |     return LIBAVUTIL_VERSION_INT; | 
					
						
							| 
									
										
										
										
											2008-08-08 18:32:20 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-11-18 17:15:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-03 14:31:25 +00:00
										 |  |  | const char *avutil_configuration(void) | 
					
						
							| 
									
										
										
										
											2009-11-18 17:15:17 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-14 22:23:10 +01:00
										 |  |  |     return LIBAV_CONFIGURATION; | 
					
						
							| 
									
										
										
										
											2009-11-18 17:15:17 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-03 14:31:25 +00:00
										 |  |  | const char *avutil_license(void) | 
					
						
							| 
									
										
										
										
											2009-11-18 17:15:17 +00:00
										 |  |  | { | 
					
						
							|  |  |  | #define LICENSE_PREFIX "libavutil license: "
 | 
					
						
							|  |  |  |     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; | 
					
						
							|  |  |  | } |