You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
228 lines
6.5 KiB
228 lines
6.5 KiB
/**
|
|
* @file window.c
|
|
* @brief Android native window provider module for VLC media player
|
|
*/
|
|
/*****************************************************************************
|
|
* Copyright © 2013 VLC authors and VideoLAN
|
|
*
|
|
* Author: Adrien Maglo <magsoft@videolan.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#endif
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <vlc_common.h>
|
|
#include <vlc_plugin.h>
|
|
#include <vlc_window.h>
|
|
#include <vlc_codec.h>
|
|
|
|
#include <vlc/libvlc.h>
|
|
#include <vlc/libvlc_media_player.h>
|
|
|
|
#include <dlfcn.h>
|
|
#include <jni.h>
|
|
|
|
#include "utils.h"
|
|
#include "../wasync_resize_compressor.h"
|
|
|
|
typedef struct
|
|
{
|
|
vlc_wasync_resize_compressor_t compressor;
|
|
} vout_window_sys_t;
|
|
|
|
struct vout_window_sys_cb
|
|
{
|
|
void *opaque;
|
|
libvlc_video_output_cleanup_cb cleanup_cb;
|
|
};
|
|
|
|
static void OnNewWindowSize(vlc_window_t *wnd,
|
|
unsigned i_width, unsigned i_height)
|
|
{
|
|
vout_window_sys_t *sys = (vout_window_sys_t *) wnd->sys;
|
|
vlc_wasync_resize_compressor_reportSize(&sys->compressor, i_width, i_height);
|
|
}
|
|
|
|
static void OnNewMouseCoords(vlc_window_t *wnd,
|
|
const struct awh_mouse_coords *coords)
|
|
{
|
|
vlc_window_ReportMouseMoved(wnd, coords->i_x, coords->i_y);
|
|
switch (coords->i_action)
|
|
{
|
|
case AMOTION_EVENT_ACTION_DOWN:
|
|
vlc_window_ReportMousePressed(wnd, coords->i_button);
|
|
break;
|
|
case AMOTION_EVENT_ACTION_UP:
|
|
vlc_window_ReportMouseReleased(wnd, coords->i_button);
|
|
break;
|
|
case AMOTION_EVENT_ACTION_MOVE:
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void Close(vlc_window_t *wnd)
|
|
{
|
|
vout_window_sys_t *sys = (vout_window_sys_t *) wnd->sys;
|
|
vlc_wasync_resize_compressor_destroy(&sys->compressor);
|
|
AWindowHandler_destroy(wnd->display.anativewindow);
|
|
}
|
|
|
|
static int Open(vlc_window_t *wnd)
|
|
{
|
|
static const struct vlc_window_operations ops = {
|
|
.destroy = Close,
|
|
};
|
|
|
|
/* We cannot create a window without the associated AWindow instance. */
|
|
jobject jobj = var_InheritAddress(wnd, "drawable-androidwindow");
|
|
if (jobj == NULL)
|
|
return VLC_EGENERIC;
|
|
|
|
vout_window_sys_t *sys = vlc_obj_malloc(VLC_OBJECT(wnd), sizeof (*sys));
|
|
if (sys == NULL)
|
|
return VLC_ENOMEM;
|
|
|
|
if (vlc_wasync_resize_compressor_init(&sys->compressor, wnd))
|
|
return VLC_EGENERIC;
|
|
|
|
wnd->sys = sys;
|
|
|
|
AWindowHandler *p_awh = AWindowHandler_new(VLC_OBJECT(wnd), wnd,
|
|
&(awh_events_t) { OnNewWindowSize, OnNewMouseCoords });
|
|
if (p_awh == NULL)
|
|
return VLC_EGENERIC;
|
|
|
|
wnd->type = VLC_WINDOW_TYPE_ANDROID_NATIVE;
|
|
wnd->display.anativewindow = p_awh;
|
|
wnd->handle.android_id = AWindow_Video;
|
|
wnd->ops = &ops;
|
|
|
|
return VLC_SUCCESS;
|
|
}
|
|
|
|
static void DestroyCallback(vlc_window_t *wnd)
|
|
{
|
|
struct vout_window_sys_cb *sys = wnd->sys;
|
|
if (sys->cleanup_cb != NULL)
|
|
sys->cleanup_cb(sys->opaque);
|
|
}
|
|
|
|
static int OpenCallback(vlc_window_t *wnd)
|
|
{
|
|
static const struct vlc_window_operations ops = {
|
|
.destroy = DestroyCallback,
|
|
};
|
|
|
|
libvlc_video_engine_t engine = var_InheritInteger(wnd, "vout-cb-type");
|
|
if (engine != libvlc_video_engine_anw)
|
|
return VLC_EGENERIC;
|
|
|
|
struct vout_window_sys_cb *sys = vlc_obj_malloc(VLC_OBJECT(wnd), sizeof (*sys));
|
|
if (sys == NULL)
|
|
return VLC_ENOMEM;
|
|
|
|
sys->opaque = var_InheritAddress(wnd, "vout-cb-opaque");
|
|
libvlc_video_output_setup_cb setup_cb = var_InheritAddress(wnd, "vout-cb-setup");
|
|
libvlc_video_update_output_cb update_cb = var_InheritAddress(wnd, "vout-cb-update-output");
|
|
sys->cleanup_cb = var_InheritAddress(wnd, "vout-cb-cleanup");
|
|
|
|
if (update_cb == NULL)
|
|
return VLC_EGENERIC;
|
|
|
|
if (setup_cb != NULL)
|
|
{
|
|
const libvlc_video_setup_device_cfg_t cfg = {
|
|
.hardware_decoding = true,
|
|
};
|
|
libvlc_video_setup_device_info_t out;
|
|
bool success = setup_cb(&sys->opaque, &cfg, &out);
|
|
if (!success)
|
|
return VLC_EGENERIC;
|
|
(void) out; /* Ignored on Android */
|
|
}
|
|
|
|
/* Default values, parameters are overridden by the producer */
|
|
const libvlc_video_render_cfg_t render_cfg = {
|
|
.width = 1,
|
|
.height = 1,
|
|
};
|
|
libvlc_video_output_cfg_t out = { .anw = { NULL, NULL } };
|
|
bool success = update_cb(sys->opaque, &render_cfg, &out);
|
|
if (!success)
|
|
goto error;
|
|
assert(out.anw.video != NULL);
|
|
|
|
AWindowHandler *awh =
|
|
AWindowHandler_newFromANWs(VLC_OBJECT(wnd), out.anw.video, out.anw.subtitle);
|
|
if (awh == NULL)
|
|
goto error;
|
|
|
|
wnd->sys = sys;
|
|
wnd->type = VLC_WINDOW_TYPE_ANDROID_NATIVE;
|
|
wnd->display.anativewindow = awh;
|
|
wnd->handle.android_id = AWindow_Video;
|
|
wnd->ops = &ops;
|
|
|
|
return VLC_SUCCESS;
|
|
error:
|
|
if (sys->cleanup_cb != NULL)
|
|
sys->cleanup_cb(sys->opaque);
|
|
return VLC_EGENERIC;
|
|
}
|
|
|
|
static int
|
|
OpenDecDevice(vlc_decoder_device *device, vlc_window_t *window)
|
|
{
|
|
AWindowHandler *awh;
|
|
if (window && window->type == VLC_WINDOW_TYPE_ANDROID_NATIVE)
|
|
{
|
|
awh = window->display.anativewindow;
|
|
}
|
|
else
|
|
{
|
|
awh = AWindowHandler_new(VLC_OBJECT(device), NULL, NULL);
|
|
if (awh == NULL)
|
|
return VLC_ENOMEM;
|
|
}
|
|
|
|
static const struct vlc_decoder_device_operations ops =
|
|
{
|
|
.close = NULL,
|
|
};
|
|
device->ops = &ops;
|
|
device->type = VLC_DECODER_DEVICE_AWINDOW;
|
|
device->opaque = awh;
|
|
|
|
return VLC_SUCCESS;
|
|
}
|
|
|
|
vlc_module_begin()
|
|
set_shortname(N_("Android Window"))
|
|
set_description(N_("Android native window"))
|
|
set_subcategory(SUBCAT_VIDEO_VOUT)
|
|
set_capability("vout window", 10)
|
|
set_callback(Open)
|
|
add_submodule ()
|
|
set_capability("vout window", 11)
|
|
set_callback(OpenCallback)
|
|
add_submodule ()
|
|
set_callback_dec_device(OpenDecDevice, 1)
|
|
add_shortcut("android")
|
|
vlc_module_end()
|
|
|