Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
ea6e923f
Commit
ea6e923f
authored
Mar 06, 2014
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add basic iOS dialog provider
There is no support for progress dialogs so far
parent
2fbc137c
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
347 additions
and
2 deletions
+347
-2
configure.ac
configure.ac
+1
-0
modules/codec/avcodec/vda.c
modules/codec/avcodec/vda.c
+0
-1
modules/gui/Modules.am
modules/gui/Modules.am
+4
-1
modules/gui/ios_dialog_provider/Modules.am
modules/gui/ios_dialog_provider/Modules.am
+8
-0
modules/gui/ios_dialog_provider/dialogProvider.m
modules/gui/ios_dialog_provider/dialogProvider.m
+334
-0
No files found.
configure.ac
View file @
ea6e923f
...
...
@@ -4111,6 +4111,7 @@ AC_CONFIG_FILES([
modules/audio_filter/Makefile
modules/control/Makefile
modules/gui/Makefile
modules/gui/ios_dialog_provider/Makefile
modules/gui/macosx/Makefile
modules/gui/minimal_macosx/Makefile
modules/gui/macosx_dialog_provider/Makefile
...
...
modules/codec/avcodec/vda.c
View file @
ea6e923f
...
...
@@ -161,7 +161,6 @@ static int Setup( vlc_va_t *external, void **pp_hw_ctx, vlc_fourcc_t *pi_chroma,
memset
(
&
p_va
->
hw_ctx
,
0
,
sizeof
(
p_va
->
hw_ctx
)
);
p_va
->
hw_ctx
.
format
=
'
avc1
'
;
p_va
->
hw_ctx
.
use_ref_buffer
=
1
;
int
i_pix_fmt
=
var_CreateGetInteger
(
p_va
->
p_log
,
"avcodec-vda-pix-fmt"
);
...
...
modules/gui/Modules.am
View file @
ea6e923f
DIST_SUBDIRS = macosx minimal_macosx qt4 skins2 macosx_dialog_provider
DIST_SUBDIRS = macosx minimal_macosx qt4 skins2 macosx_dialog_provider
ios_dialog_provider
SUBDIRS =
if ENABLE_MACOSX_UI
...
...
@@ -7,6 +7,9 @@ endif
if ENABLE_MACOSX_DIALOG_PROVIDER
SUBDIRS += macosx_dialog_provider
endif
if HAVE_IOS
SUBDIRS += ios_dialog_provider
endif
if ENABLE_MINIMAL_MACOSX
SUBDIRS += minimal_macosx
endif
...
...
modules/gui/ios_dialog_provider/Modules.am
0 → 100644
View file @
ea6e923f
AM_LIBTOOLFLAGS=--tag=CC
libios_dialog_provider_plugin_la_SOURCES = dialogProvider.m
libios_dialog_provider_plugin_la_LDFLAGS = $(AM_LDFLAGS) -Wl,-framework,UIKit
if HAVE_IOS
gui_LTLIBRARIES += libios_dialog_provider_plugin.la
endif
modules/gui/ios_dialog_provider/dialogProvider.m
0 → 100644
View file @
ea6e923f
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment