2 * Various simple utilities for ffmpeg system
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #if !defined(CONFIG_NOCUTILS)
23 * Return TRUE if val is a prefix of str. If it returns TRUE, ptr is
24 * set to the next character in 'str' after the prefix.
26 * @param str input string
27 * @param val prefix to test
28 * @param ptr updated after the prefix in str in there is a match
29 * @return TRUE if there is a match
31 int strstart(const char *str
, const char *val
, const char **ptr
)
48 * Return TRUE if val is a prefix of str (case independent). If it
49 * returns TRUE, ptr is set to the next character in 'str' after the
52 * @param str input string
53 * @param val prefix to test
54 * @param ptr updated after the prefix in str in there is a match
55 * @return TRUE if there is a match */
56 int stristart(const char *str
, const char *val
, const char **ptr
)
62 if (toupper(*(const unsigned char *)p
) != toupper(*(const unsigned char *)q
))
73 * Copy the string str to buf. If str length is bigger than buf_size -
74 * 1 then it is clamped to buf_size - 1.
75 * NOTE: this function does what strncpy should have done to be
76 * useful. NEVER use strncpy.
78 * @param buf destination buffer
79 * @param buf_size size of destination buffer
80 * @param str source string
82 void pstrcpy(char *buf
, int buf_size
, const char *str
)
92 if (c
== 0 || q
>= buf
+ buf_size
- 1)
99 /* strcat and truncate. */
100 char *pstrcat(char *buf
, int buf_size
, const char *s
)
105 pstrcpy(buf
+ len
, buf_size
- len
, s
);
111 /* add one element to a dynamic array */
112 void __dynarray_add(unsigned long **tab_ptr
, int *nb_ptr
, unsigned long elem
)
119 if ((nb
& (nb
- 1)) == 0) {
124 tab
= av_realloc(tab
, nb_alloc
* sizeof(unsigned long));
131 time_t mktimegm(struct tm
*tm
)
135 int y
= tm
->tm_year
+ 1900, m
= tm
->tm_mon
+ 1, d
= tm
->tm_mday
;
143 (d
+ (153 * m
- 457) / 5 + 365 * y
+ y
/ 4 - y
/ 100 + y
/ 400 - 719469);
145 t
+= 3600 * tm
->tm_hour
+ 60 * tm
->tm_min
+ tm
->tm_sec
;
150 #define ISLEAP(y) (((y) % 4 == 0) && (((y) % 100) != 0 || ((y) % 400) == 0))
151 #define LEAPS_COUNT(y) ((y)/4 - (y)/100 + (y)/400)
153 /* this is our own gmtime_r. it differs from its POSIX counterpart in a
154 couple of places, though. */
155 struct tm
*brktimegm(time_t secs
, struct tm
*tm
)
158 int md
[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
162 tm
->tm_hour
= secs
/ 3600;
163 tm
->tm_min
= (secs
% 3600) / 60;
164 tm
->tm_sec
= secs
% 60;
166 /* oh well, may be someone some day will invent a formula for this stuff */
167 y
= 1970; /* start "guessing" */
168 while (days
>= (ISLEAP(y
)?
366:365)) {
170 days
-= (ny
- y
) * 365 + LEAPS_COUNT(ny
- 1) - LEAPS_COUNT(y
- 1);
173 md
[1] = ISLEAP(y
)?
29:28;
174 for (m
=0; days
>= md
[m
]; m
++)
177 tm
->tm_year
= y
; /* unlike gmtime_r we store complete year here */
178 tm
->tm_mon
= m
+1; /* unlike gmtime_r tm_mon is from 1 to 12 */
179 tm
->tm_mday
= days
+1;
184 /* get a positive number between n_min and n_max, for a maximum length
185 of len_max. Return -1 if error. */
186 static int date_get_num(const char **pp
,
187 int n_min
, int n_max
, int len_max
)
194 for(i
= 0; i
< len_max
; i
++) {
198 val
= (val
* 10) + c
- '0';
201 /* no number read ? */
204 if (val
< n_min
|| val
> n_max
)
210 /* small strptime for ffmpeg */
211 const char *small_strptime(const char *p
, const char *fmt
,
220 } else if (c
== '%') {
224 val
= date_get_num(&p
, 0, 23, 2);
230 val
= date_get_num(&p
, 0, 59, 2);
236 val
= date_get_num(&p
, 0, 59, 2);
242 val
= date_get_num(&p
, 0, 9999, 4);
245 dt
->tm_year
= val
- 1900;
248 val
= date_get_num(&p
, 1, 12, 2);
251 dt
->tm_mon
= val
- 1;
254 val
= date_get_num(&p
, 1, 31, 2);