mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 20:42:49 +08:00 
			
		
		
		
	ffserver: drop custom skip_spaces() impl
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
This commit is contained in:
		
							
								
								
									
										13
									
								
								ffserver.c
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								ffserver.c
									
									
									
									
									
								
							| @@ -1258,24 +1258,13 @@ static int modify_current_stream(HTTPContext *c, char *rates) | ||||
|     return action_required; | ||||
| } | ||||
|  | ||||
| /* XXX: factorize in utils.c ? */ | ||||
| /* XXX: take care with different space meaning */ | ||||
| static void skip_spaces(const char **pp) | ||||
| { | ||||
|     const char *p; | ||||
|     p = *pp; | ||||
|     while (*p == ' ' || *p == '\t') | ||||
|         p++; | ||||
|     *pp = p; | ||||
| } | ||||
|  | ||||
| static void get_word(char *buf, int buf_size, const char **pp) | ||||
| { | ||||
|     const char *p; | ||||
|     char *q; | ||||
|  | ||||
|     p = *pp; | ||||
|     skip_spaces(&p); | ||||
|     p += strspn(p, SPACE_CHARS); | ||||
|     q = buf; | ||||
|     while (!av_isspace(*p) && *p != '\0') { | ||||
|         if ((q - buf) < buf_size - 1) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Reynaldo H. Verdejo Pinochet
					Reynaldo H. Verdejo Pinochet