Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-25 03:31:18 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-27 15:14:57 +0300
commit5714cf1b5bf520192ddfde4115f3c447a86ba061 (patch)
tree047fc77da3107d4095f70343f3ca2c1ff9bbb913 /libavcodec/dvdsub.c
parentd1a5ef406946d7a9b9abbe3c8373d258a69deedf (diff)
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.c3
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++) {