mirror of
https://github.com/mpv-player/mpv
synced 2024-12-22 06:42:03 +00:00
Rename mp_lua.c/h to lua.c/h
This commit is contained in:
parent
56eafe3344
commit
053c743724
@ -133,7 +133,7 @@ SOURCES-$(WAYLAND) += video/out/vo_wayland.c video/out/wayland_comm
|
||||
SOURCES-$(VF_LAVFI) += video/filter/vf_lavfi.c
|
||||
SOURCES-$(AF_LAVFI) += audio/filter/af_lavfi.c
|
||||
|
||||
SOURCES-$(LUA) += player/mp_lua.c
|
||||
SOURCES-$(LUA) += player/lua.c
|
||||
|
||||
ifeq ($(HAVE_AVUTIL_REFCOUNTING),no)
|
||||
SOURCES-yes += video/decode/lavc_dr1.c
|
||||
@ -421,15 +421,15 @@ sub/osd_libass.c: sub/osd_font.h
|
||||
sub/osd_font.h: TOOLS/file2string.pl sub/osd_font.otf
|
||||
./$^ >$@
|
||||
|
||||
player/mp_lua.c: player/lua/defaults.inc
|
||||
player/lua.c: player/lua/defaults.inc
|
||||
player/lua/defaults.inc: TOOLS/file2string.pl player/lua/defaults.lua
|
||||
./$^ >$@
|
||||
|
||||
player/mp_lua.c: player/lua/assdraw.inc
|
||||
player/lua.c: player/lua/assdraw.inc
|
||||
player/lua/assdraw.inc: TOOLS/file2string.pl player/lua/assdraw.lua
|
||||
./$^ >$@
|
||||
|
||||
player/mp_lua.c: player/lua/osc.inc
|
||||
player/lua.c: player/lua/osc.inc
|
||||
player/lua/osc.inc: TOOLS/file2string.pl player/lua/osc.lua
|
||||
./$^ >$@
|
||||
|
||||
|
@ -73,7 +73,7 @@
|
||||
#include "osdep/io.h"
|
||||
|
||||
#include "core.h"
|
||||
#include "mp_lua.h"
|
||||
#include "lua.h"
|
||||
|
||||
struct command_ctx {
|
||||
int events;
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include "sub/osd.h"
|
||||
#include "core.h"
|
||||
#include "command.h"
|
||||
#include "mp_lua.h"
|
||||
#include "lua.h"
|
||||
|
||||
// List of builtin modules and their contents as strings.
|
||||
// All these are generated from player/lua/*.lua
|
@ -61,7 +61,7 @@
|
||||
#include "video/out/vo.h"
|
||||
|
||||
#include "core.h"
|
||||
#include "mp_lua.h"
|
||||
#include "lua.h"
|
||||
#include "command.h"
|
||||
#include "screenshot.h"
|
||||
|
||||
|
@ -214,7 +214,7 @@ def build(ctx):
|
||||
( "player/loadfile.c" ),
|
||||
( "player/main.c" ),
|
||||
( "player/misc.c" ),
|
||||
( "player/mp_lua.c", "lua" ),
|
||||
( "player/lua.c", "lua" ),
|
||||
( "player/osd.c" ),
|
||||
( "player/playloop.c" ),
|
||||
( "player/screenshot.c" ),
|
||||
|
Loading…
Reference in New Issue
Block a user