| | 272 | |
|---|
| | 273 | /** @} */ |
|---|
| | 274 | |
|---|
| | 275 | /** defgroup libvlc_video Video |
|---|
| | 276 | * \ingroup libvlc |
|---|
| | 277 | * LibVLC Video handling |
|---|
| | 278 | * @{ |
|---|
| | 279 | */ |
|---|
| | 280 | |
|---|
| | 281 | /** |
|---|
| | 282 | * Toggle fullscreen status on video output |
|---|
| | 283 | * \param p_input the input |
|---|
| | 284 | * \param p_exception an initialized exception |
|---|
| | 285 | */ |
|---|
| | 286 | void libvlc_toggle_fullscreen( libvlc_input_t *, libvlc_exception_t * ); |
|---|
| | 287 | |
|---|
| | 288 | /** |
|---|
| | 289 | * Enable or disable fullscreen on a video output |
|---|
| | 290 | * \param p_input the input |
|---|
| | 291 | * \param b_fullscreen boolean for fullscreen status |
|---|
| | 292 | * \param p_exception an initialized exception |
|---|
| | 293 | */ |
|---|
| | 294 | void libvlc_set_fullscreen( libvlc_input_t *, int, libvlc_exception_t * ); |
|---|
| | 295 | |
|---|
| | 296 | /** |
|---|
| | 297 | * Get current fullscreen status |
|---|
| | 298 | * \param p_input the input |
|---|
| | 299 | * \param p_exception an initialized exception |
|---|
| | 300 | * \return the fullscreen status (boolean) |
|---|
| | 301 | */ |
|---|
| | 302 | int libvlc_get_fullscreen( libvlc_input_t *, libvlc_exception_t * ); |
|---|
| 273 | | |
|---|
| 274 | | |
|---|
| 275 | | /** @} */ |
|---|
| 276 | | |
|---|
| 277 | | /** defgroup libvlc_video Video |
|---|
| 278 | | * \ingroup libvlc |
|---|
| 279 | | * LibVLC Video handling |
|---|
| 280 | | * @{ |
|---|
| 281 | | */ |
|---|
| 282 | | |
|---|
| 283 | | /** |
|---|
| 284 | | * Toggle fullscreen status on video output |
|---|
| 285 | | * \param p_input the input |
|---|
| 286 | | * \param p_exception an initialized exception |
|---|
| 287 | | */ |
|---|
| 288 | | void libvlc_toggle_fullscreen( libvlc_input_t *, libvlc_exception_t * ); |
|---|
| 289 | | |
|---|
| 290 | | /** |
|---|
| 291 | | * Enable or disable fullscreen on a video output |
|---|
| 292 | | * \param p_input the input |
|---|
| 293 | | * \param b_fullscreen boolean for fullscreen status |
|---|
| 294 | | * \param p_exception an initialized exception |
|---|
| 295 | | */ |
|---|
| 296 | | void libvlc_set_fullscreen( libvlc_input_t *, int, libvlc_exception_t * ); |
|---|
| 297 | | |
|---|
| 298 | | /** |
|---|
| 299 | | * Get current fullscreen status |
|---|
| 300 | | * \param p_input the input |
|---|
| 301 | | * \param p_exception an initialized exception |
|---|
| 302 | | * \return the fullscreen status (boolean) |
|---|
| 303 | | */ |
|---|
| 304 | | int libvlc_get_fullscreen( libvlc_input_t *, libvlc_exception_t * ); |
|---|
| 305 | | |
|---|
| 306 | | |
|---|
| | 304 | /** |
|---|
| | 305 | * Get current video height |
|---|
| | 306 | * \param p_input the input |
|---|
| | 307 | * \param p_exception an initialized exception |
|---|
| | 308 | * \return the video height |
|---|
| | 309 | */ |
|---|
| | 310 | int libvlc_video_get_height( libvlc_input_t *, libvlc_exception_t * ); |
|---|
| | 311 | |
|---|
| | 312 | /** |
|---|
| | 313 | * Get current video width |
|---|
| | 314 | * \param p_input the input |
|---|
| | 315 | * \param p_exception an initialized exception |
|---|
| | 316 | * \return the video width |
|---|
| | 317 | */ |
|---|
| | 318 | int libvlc_video_get_width( libvlc_input_t *, libvlc_exception_t * ); |
|---|
| | 319 | |
|---|
| | 320 | /** |
|---|
| | 321 | * Take a snapshot of the current video window |
|---|
| | 322 | * \param p_input the input |
|---|
| | 323 | * \param psz_filepath the path where to save the screenshot to |
|---|
| | 324 | * \param p_exception an initialized exception |
|---|
| | 325 | */ |
|---|