]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/cutils.c
latm: Always reconfigure if no extradata was set previously
[ffmpeg] / libavformat / cutils.c
index f94442f1bdef2d305c5083a6568f8746684f6a87..f58e152cac03a70ae832b2f64bab433c98449418 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Various simple utilities for ffmpeg system
+ * various simple utilities for libavformat
  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
  *
  * This file is part of Libav.
@@ -47,7 +47,7 @@ void ff_dynarray_add(intptr_t **tab_ptr, int *nb_ptr, intptr_t elem)
 
 /* This is our own gmtime_r. It differs from its POSIX counterpart in a
    couple of places, though. */
-struct tm *brktimegm(time_t secs, struct tm *tm)
+struct tm *ff_brktimegm(time_t secs, struct tm *tm)
 {
     int days, y, ny, m;
     int md[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };