summaryrefslogtreecommitdiff
path: root/libavcodec/internal.h
diff options
context:
space:
mode:
authorMichael Kuron <michael.kuron@gmail.com>2020-02-03 20:42:30 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2020-02-04 23:34:22 +0100
commitbf070a9171d9d5b3603e5bcf7e72dd9e584a3b83 (patch)
tree72287a302f2a9e014f1a4ad6576cd96ca624d708 /libavcodec/internal.h
parenta15618d2c3a20323530376701d44984a749315d7 (diff)
lavc/dvdsubdec: Move palette parsing to new function
Signed-off-by: Michael Kuron <michael.kuron@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r--libavcodec/internal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
index 4188d1c46f..bccd9222d4 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -433,6 +433,8 @@ int64_t ff_guess_coded_bitrate(AVCodecContext *avctx);
int ff_int_from_list_or_default(void *ctx, const char * val_name, int val,
const int * array_valid_values, int default_value);
+void ff_dvdsub_parse_palette(uint32_t *palette, const char *p);
+
#if defined(_WIN32) && CONFIG_SHARED && !defined(BUILDING_avcodec)
# define av_export_avcodec __declspec(dllimport)
#else