mirror of
				https://git.ffmpeg.org/ffmpeg.git
				synced 2025-10-31 07:40:55 +00:00 
			
		
		
		
	 126b638ea0
			
		
	
	
		126b638ea0
		
	
	
	
	
		
			
			in favor of the newly added corresponding functions av_parse_video_size() and av_parse_video_rate() defined in libavcore/parseutils.h. This change also adds a linking-time dependency of libavcodec and of libavfilter on libavcore. Originally committed as revision 24518 to svn://svn.ffmpeg.org/ffmpeg/trunk
		
			
				
	
	
		
			53 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * 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
 | |
|  */
 | |
| 
 | |
| #ifndef AVCORE_PARSEUTILS_H
 | |
| #define AVCORE_PARSEUTILS_H
 | |
| 
 | |
| #include <libavutil/rational.h>
 | |
| 
 | |
| /**
 | |
|  * @file
 | |
|  * misc parsing utilities for libavcore
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * Parse str and put in width_ptr and height_ptr the detected values.
 | |
|  *
 | |
|  * @param[in,out] width_ptr pointer to the variable which will contain the detected
 | |
|  * frame width value
 | |
|  * @param[in,out] height_ptr pointer to the variable which will contain the detected
 | |
|  * frame height value
 | |
|  * @param[in] str the string to parse: it has to be a string in the format
 | |
|  * width x height or a valid video frame size abbreviation.
 | |
|  * @return >= 0 on success, a negative error code otherwise
 | |
|  */
 | |
| int av_parse_video_size(int *width_ptr, int *height_ptr, const char *str);
 | |
| 
 | |
| /**
 | |
|  * Parse str and store the detected values in *frame_rate.
 | |
|  *
 | |
|  * @param[in,out] frame_rate pointer to the AVRational which will contain the detected
 | |
|  * frame rate
 | |
|  * @param[in] str the string to parse: it has to be a string in the format
 | |
|  * frame_rate_num / frame_rate_den, a float number or a valid video rate abbreviation
 | |
|  * @return >= 0 on success, a negative error code otherwise
 | |
|  */
 | |
| int av_parse_video_rate(AVRational *frame_rate, const char *str);
 | |
| 
 | |
| #endif /* AVCORE_PARSEUTILS_H */
 |