summaryrefslogtreecommitdiff
path: root/libavutil/internal.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-27 17:49:52 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-03 15:41:44 +0200
commit04b72178724ed08934e276c959a6f1a154e1e7d4 (patch)
tree72a158d3578bf114b585794265b1117e79048674 /libavutil/internal.h
parent26325cceb020608928800b8fe5f4a0f6e60468eb (diff)
downloadffmpeg-04b72178724ed08934e276c959a6f1a154e1e7d4.tar.gz
avutil/dict: Move avpriv_dict_set_timestamp() to a header of its own
It is used almost nowhere, so it needn't be auto-included almost everywhere. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r--libavutil/internal.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 8ee5a101c6..8bdc7b3ac8 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -41,7 +41,6 @@
#include "config.h"
#include "attributes.h"
#include "timer.h"
-#include "dict.h"
#include "macros.h"
#include "pixfmt.h"
@@ -230,15 +229,4 @@ static av_always_inline av_const int avpriv_mirror(int x, int w)
void ff_check_pixfmt_descriptors(void);
-/**
- * Set a dictionary value to an ISO-8601 compliant timestamp string.
- *
- * @param dict pointer to a pointer to a dictionary struct. If *dict is NULL
- * a dictionary struct is allocated and put in *dict.
- * @param key metadata key
- * @param timestamp unix timestamp in microseconds
- * @return <0 on error
- */
-int avpriv_dict_set_timestamp(AVDictionary **dict, const char *key, int64_t timestamp);
-
#endif /* AVUTIL_INTERNAL_H */