diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-27 17:49:52 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-03 15:41:44 +0200 |
commit | 04b72178724ed08934e276c959a6f1a154e1e7d4 (patch) | |
tree | 72a158d3578bf114b585794265b1117e79048674 /libavutil/dict.c | |
parent | 26325cceb020608928800b8fe5f4a0f6e60468eb (diff) | |
download | ffmpeg-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/dict.c')
-rw-r--r-- | libavutil/dict.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/dict.c b/libavutil/dict.c index 9d3d96c58b..a4f638a1fc 100644 --- a/libavutil/dict.c +++ b/libavutil/dict.c @@ -22,6 +22,7 @@ #include "avstring.h" #include "dict.h" +#include "dict_internal.h" #include "internal.h" #include "mem.h" #include "time_internal.h" |