mediacontrol_audio_video.c 9.17 KB
Newer Older
1 2 3
/*****************************************************************************
 * audio_video.c: Audio/Video management : volume, snapshot, OSD
 *****************************************************************************
4
 * Copyright (C) 2005 the VideoLAN team
5
 * $Id$
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * Authors: Olivier Aubert <olivier.aubert@liris.univ-lyon1.fr>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
Antoine Cellerier's avatar
Antoine Cellerier committed
21
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 23
 *****************************************************************************/

24 25 26
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
Clément Stenac's avatar
Clément Stenac committed
27
#include "mediacontrol_internal.h"
28
#include "libvlc_internal.h"
29
#include "media_player_internal.h"
30

Clément Stenac's avatar
Clément Stenac committed
31
#include <vlc/mediacontrol.h>
32
#include <vlc/libvlc.h>
33

Clément Stenac's avatar
Clément Stenac committed
34
#include <vlc_vout.h>
35
#include <vlc_input.h>
Clément Stenac's avatar
Clément Stenac committed
36
#include <vlc_osd.h>
37
#include <vlc_block.h>
38 39 40 41 42 43 44 45 46

#include <stdlib.h>                                      /* malloc(), free() */
#include <string.h>

#include <stdio.h>

#ifdef HAVE_UNISTD_H
#    include <unistd.h>
#endif
47 48 49
#ifdef HAVE_SYS_TYPES_H
#    include <sys/types.h>
#endif
50 51 52 53 54 55

mediacontrol_RGBPicture *
mediacontrol_snapshot( mediacontrol_Instance *self,
                       const mediacontrol_Position * a_position,
                       mediacontrol_Exception *exception )
{
56
    (void)a_position;
57
    vout_thread_t* p_vout;
58
    input_thread_t *p_input;
59
    mediacontrol_RGBPicture *p_pic;
60
    libvlc_exception_t ex;
61

62
    libvlc_exception_init( &ex );
63
    mediacontrol_exception_init( exception );
64

65 66 67 68 69
    p_input = libvlc_get_input_thread( self->p_media_player, &ex );
    if( ! p_input )
    {
        RAISE_NULL( mediacontrol_InternalException, "No input" );
    }
70

71
    p_vout = input_GetVout( p_input );
72
    vlc_object_release( p_input );
73 74
    if( ! p_vout )
    {
75
        RAISE_NULL( mediacontrol_InternalException, "No video output" );
76
    }
77

78 79
    block_t *p_image;
    video_format_t fmt;
80

81
    if( vout_GetSnapshot( p_vout, &p_image, NULL, &fmt, "png", 500*1000 ) )
82
    {
83
        vlc_object_release( p_vout );
84 85
        RAISE_NULL( mediacontrol_InternalException, "Snapshot exception" );
        return NULL;
86
    }
87

88 89 90
    /* */
    char *p_data = malloc( p_image->i_buffer );
    if( p_data )
91
    {
92 93 94 95 96 97 98
        memcpy( p_data, p_image->p_buffer, p_image->i_buffer );
        p_pic = private_mediacontrol_createRGBPicture( fmt.i_width,
                                                       fmt.i_height,
                                                       fmt.i_chroma,
                                                       p_image->i_pts,
                                                       p_data,
                                                       p_image->i_buffer );
99
    }
100
    else
101
    {
102
        p_pic = NULL;
103
    }
104 105 106 107
    block_Release( p_image );

    if( !p_pic )
        RAISE_NULL( mediacontrol_InternalException, "Out of memory" );
108 109

    vlc_object_release( p_vout );
110
    return p_pic;
111 112
}

113
static
114
int mediacontrol_showtext( vout_thread_t *p_vout, int i_channel,
115
                           const char *psz_string, text_style_t *p_style,
116 117 118
                           int i_flags, int i_hmargin, int i_vmargin,
                           mtime_t i_start, mtime_t i_stop )
{
119
    return osd_ShowTextAbsolute( vout_GetSpu( p_vout ), i_channel,
120 121 122
                                 psz_string, p_style,
                                 i_flags, i_hmargin, i_vmargin,
                                 i_start, i_stop );
123 124 125 126 127 128 129 130 131 132 133
}


void
mediacontrol_display_text( mediacontrol_Instance *self,
                           const char * message,
                           const mediacontrol_Position * begin,
                           const mediacontrol_Position * end,
                           mediacontrol_Exception *exception )
{
    vout_thread_t *p_vout = NULL;
134 135
    input_thread_t *p_input;
    libvlc_exception_t ex;
136

137 138 139
    libvlc_exception_init( &ex );
    mediacontrol_exception_init( exception );

140 141 142 143 144
    if( !message )
    {
        RAISE_VOID( mediacontrol_InternalException, "Empty text" );
    }

145 146
    p_input = libvlc_get_input_thread( self->p_media_player, &ex );
    if( ! p_input )
147
    {
148
        RAISE_VOID( mediacontrol_InternalException, "No input" );
149
    }
150
    p_vout = input_GetVout( p_input );
151 152 153
    /*FIXME: take care of the next fixme that can use p_input */
    vlc_object_release( p_input );

154 155
    if( ! p_vout )
    {
156 157 158
        RAISE_VOID( mediacontrol_InternalException, "No video output" );
    }

159 160 161 162 163
    if( begin->origin == mediacontrol_RelativePosition &&
        begin->value == 0 &&
        end->origin == mediacontrol_RelativePosition )
    {
        mtime_t i_duration = 0;
164
        mtime_t i_now = mdate();
165

166
        i_duration = 1000 * private_mediacontrol_unit_convert(
167 168 169 170
                                                              self->p_media_player,
                                                              end->key,
                                                              mediacontrol_MediaTime,
                                                              end->value );
171

172
        mediacontrol_showtext( p_vout, DEFAULT_CHAN, message, NULL,
173 174 175 176 177 178 179 180 181 182
                               OSD_ALIGN_BOTTOM | OSD_ALIGN_LEFT, 0, 0,
                               i_now, i_now + i_duration );
    }
    else
    {
        mtime_t i_debut, i_fin, i_now;

        /* FIXME */
        /* i_now = input_ClockGetTS( p_input, NULL, 0 ); */
        i_now = mdate();
183

184
        i_debut = private_mediacontrol_position2microsecond( self->p_media_player,
185
                                            ( mediacontrol_Position* ) begin );
186 187
        i_debut += i_now;

188
        i_fin = private_mediacontrol_position2microsecond( self->p_media_player,
189
                                          ( mediacontrol_Position * ) end );
190 191
        i_fin += i_now;

192
        vout_ShowTextAbsolute( p_vout, DEFAULT_CHAN, message, NULL,
193 194 195 196 197 198 199 200 201 202 203
                               OSD_ALIGN_BOTTOM | OSD_ALIGN_LEFT, 0, 0,
                               i_debut, i_fin );
    }

    vlc_object_release( p_vout );
}

unsigned short
mediacontrol_sound_get_volume( mediacontrol_Instance *self,
                               mediacontrol_Exception *exception )
{
204
    int i_ret = 0;
205

206 207
    mediacontrol_exception_init( exception );

208
    i_ret = libvlc_audio_get_volume( self->p_instance );
209 210
    /* FIXME: Normalize in [0..100] */
    return (unsigned short)i_ret;
211 212 213 214 215 216 217
}

void
mediacontrol_sound_set_volume( mediacontrol_Instance *self,
                               const unsigned short volume,
                               mediacontrol_Exception *exception )
{
218 219 220 221 222 223 224 225
    /* FIXME: Normalize in [0..100] */
    libvlc_exception_t ex;

    mediacontrol_exception_init( exception );
    libvlc_exception_init( &ex );

    libvlc_audio_set_volume( self->p_instance, volume, &ex );
    HANDLE_LIBVLC_EXCEPTION_VOID( &ex );
226 227
}

228
int mediacontrol_set_visual( mediacontrol_Instance *self,
229 230
                                    WINDOWHANDLE visual_id,
                                    mediacontrol_Exception *exception )
231
{
232
    libvlc_exception_t ex;
233

234 235
    mediacontrol_exception_init( exception );
    libvlc_exception_init( &ex );
236 237 238 239 240
#ifdef WIN32
    libvlc_media_player_set_hwnd( self->p_media_player, visual_id, &ex );
#else
    libvlc_media_player_set_xwindow( self->p_media_player, visual_id, &ex );
#endif
241
    HANDLE_LIBVLC_EXCEPTION_ZERO( &ex );
242
    return true;
243
}
244 245 246

int
mediacontrol_get_rate( mediacontrol_Instance *self,
247
               mediacontrol_Exception *exception )
248
{
249 250 251 252 253 254
    libvlc_exception_t ex;
    int i_ret;

    mediacontrol_exception_init( exception );
    libvlc_exception_init( &ex );

255
    i_ret = libvlc_media_player_get_rate( self->p_media_player, &ex );
256
    HANDLE_LIBVLC_EXCEPTION_ZERO( &ex );
257

258
    return i_ret / 10;
259 260 261 262
}

void
mediacontrol_set_rate( mediacontrol_Instance *self,
263 264
               const int rate,
               mediacontrol_Exception *exception )
265
{
266 267 268 269
    libvlc_exception_t ex;

    mediacontrol_exception_init( exception );
    libvlc_exception_init( &ex );
270

271
    libvlc_media_player_set_rate( self->p_media_player, rate * 10, &ex );
272
    HANDLE_LIBVLC_EXCEPTION_VOID( &ex );
273 274 275 276
}

int
mediacontrol_get_fullscreen( mediacontrol_Instance *self,
277
                 mediacontrol_Exception *exception )
278
{
279
    libvlc_exception_t ex;
280 281
    int i_ret;

282 283 284
    mediacontrol_exception_init( exception );
    libvlc_exception_init( &ex );

285
    i_ret = libvlc_get_fullscreen( self->p_media_player, &ex );
286 287 288
    HANDLE_LIBVLC_EXCEPTION_ZERO( &ex );

    return i_ret;
289 290 291 292
}

void
mediacontrol_set_fullscreen( mediacontrol_Instance *self,
293 294
                 const int b_fullscreen,
                 mediacontrol_Exception *exception )
295
{
296
    libvlc_exception_t ex;
297

298 299
    mediacontrol_exception_init( exception );
    libvlc_exception_init( &ex );
300

301
    libvlc_set_fullscreen( self->p_media_player, b_fullscreen, &ex );
302
    HANDLE_LIBVLC_EXCEPTION_VOID( &ex );
303
}