diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-25 02:31:18 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-27 14:14:57 +0200 |
commit | 5714cf1b5bf520192ddfde4115f3c447a86ba061 (patch) | |
tree | 047fc77da3107d4095f70343f3ca2c1ff9bbb913 /libavcodec/dvdsub.c | |
parent | d1a5ef406946d7a9b9abbe3c8373d258a69deedf (diff) | |
download | ffmpeg-5714cf1b5bf520192ddfde4115f3c447a86ba061.tar.gz |
avcodec/internal: Move ff_dvdsub_parse_palette() to new header dvdsub.h
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/dvdsub.c')
-rw-r--r-- | libavcodec/dvdsub.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dvdsub.c b/libavcodec/dvdsub.c index 87215d2bd1..fb415677d9 100644 --- a/libavcodec/dvdsub.c +++ b/libavcodec/dvdsub.c @@ -19,10 +19,11 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "internal.h" #include "libavutil/avstring.h" #include <stdlib.h> +#include "dvdsub.h" + void ff_dvdsub_parse_palette(uint32_t *palette, const char *p) { for (int i = 0; i < 16; i++) { |