diff options
author | Anish <anishbhobe@hotmail.com> | 2018-07-29 01:31:30 +0530 |
---|---|---|
committer | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-12-13 15:19:09 +0100 |
commit | 7199b7b5dd1b324f6581c4a880951730daefbb60 (patch) | |
tree | 8ea1419487eaf37b414ce18d10db9474a998cdfc /modules/gdnative/videodecoder/SCsub | |
parent | d030c17d5ea1c6e40d8c45a7cffd072242dcb735 (diff) |
Added interface for GDNative Videodecoder.
Interface and callback api added for Videodecoder support.
Should be able to construct any format videodecoder using
only the given interface.
GSoC 2018 project.
Diffstat (limited to 'modules/gdnative/videodecoder/SCsub')
-rw-r--r-- | modules/gdnative/videodecoder/SCsub | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/gdnative/videodecoder/SCsub b/modules/gdnative/videodecoder/SCsub new file mode 100644 index 0000000000..51b0418d6b --- /dev/null +++ b/modules/gdnative/videodecoder/SCsub @@ -0,0 +1,12 @@ +#!/usr/bin/env python + +import os +import methods + +Import('env') +Import('env_modules') + +env_vsdecoder_gdnative = env_modules.Clone() + +env_vsdecoder_gdnative.Append(CPPPATH=['#modules/gdnative/include/']) +env_vsdecoder_gdnative.add_source_files(env.modules_sources, '*.cpp') |