2012-04-21 21:13:50 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2017-03-22 02:09:18 +00:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2011-02-02 10:47:05 +00:00
|
|
|
*
|
2012-04-21 21:13:50 +00:00
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
2011-02-02 10:47:05 +00:00
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
2012-04-21 21:13:50 +00:00
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
2011-02-02 10:47:05 +00:00
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
2012-04-21 21:31:57 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
2011-02-02 10:47:05 +00:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
#ifndef __RARCH_MOVIE_H
|
|
|
|
#define __RARCH_MOVIE_H
|
2011-02-02 10:47:05 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
2012-01-11 18:22:18 +00:00
|
|
|
#include <stddef.h>
|
2016-02-04 19:56:22 +00:00
|
|
|
|
2014-10-21 03:05:52 +00:00
|
|
|
#include <boolean.h>
|
2016-06-03 00:39:35 +00:00
|
|
|
#include <retro_common_api.h>
|
|
|
|
|
|
|
|
RETRO_BEGIN_DECLS
|
2011-02-02 10:47:05 +00:00
|
|
|
|
2016-02-04 19:56:22 +00:00
|
|
|
#define BSV_MAGIC 0x42535631
|
2012-03-25 21:48:27 +00:00
|
|
|
|
2016-02-04 19:56:22 +00:00
|
|
|
#define MAGIC_INDEX 0
|
|
|
|
#define SERIALIZER_INDEX 1
|
|
|
|
#define CRC_INDEX 2
|
|
|
|
#define STATE_SIZE_INDEX 3
|
2012-03-25 21:48:27 +00:00
|
|
|
|
2011-02-02 10:47:05 +00:00
|
|
|
typedef struct bsv_movie bsv_movie_t;
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
enum rarch_movie_type
|
2011-02-02 10:47:05 +00:00
|
|
|
{
|
2016-03-22 01:45:25 +00:00
|
|
|
RARCH_MOVIE_PLAYBACK = 0,
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_MOVIE_RECORD
|
2011-02-02 10:47:05 +00:00
|
|
|
};
|
|
|
|
|
2015-11-30 23:04:04 +00:00
|
|
|
enum bsv_ctl_state
|
|
|
|
{
|
2016-01-30 02:25:47 +00:00
|
|
|
BSV_MOVIE_CTL_NONE = 0,
|
|
|
|
BSV_MOVIE_CTL_IS_INITED,
|
|
|
|
BSV_MOVIE_CTL_SET_INPUT,
|
2015-12-01 00:25:36 +00:00
|
|
|
BSV_MOVIE_CTL_SET_START_RECORDING,
|
|
|
|
BSV_MOVIE_CTL_UNSET_START_RECORDING,
|
2015-11-30 23:04:04 +00:00
|
|
|
BSV_MOVIE_CTL_START_RECORDING,
|
2015-12-01 00:25:36 +00:00
|
|
|
BSV_MOVIE_CTL_SET_START_PLAYBACK,
|
|
|
|
BSV_MOVIE_CTL_UNSET_START_PLAYBACK,
|
2015-11-30 23:04:04 +00:00
|
|
|
BSV_MOVIE_CTL_START_PLAYBACK,
|
2015-11-30 23:16:48 +00:00
|
|
|
BSV_MOVIE_CTL_UNSET_PLAYBACK,
|
2015-11-30 23:19:15 +00:00
|
|
|
BSV_MOVIE_CTL_FRAME_REWIND,
|
2015-11-30 23:04:04 +00:00
|
|
|
BSV_MOVIE_CTL_DEINIT,
|
|
|
|
BSV_MOVIE_CTL_INIT,
|
2015-12-01 00:29:16 +00:00
|
|
|
BSV_MOVIE_CTL_END_EOF,
|
|
|
|
BSV_MOVIE_CTL_SET_END_EOF,
|
2015-11-30 23:16:48 +00:00
|
|
|
BSV_MOVIE_CTL_SET_END,
|
|
|
|
BSV_MOVIE_CTL_UNSET_END
|
2015-11-30 23:04:04 +00:00
|
|
|
};
|
|
|
|
|
2017-04-20 08:40:11 +00:00
|
|
|
bool bsv_movie_is_playback_on(void);
|
|
|
|
|
|
|
|
bool bsv_movie_is_playback_off(void);
|
|
|
|
|
2015-12-01 00:38:45 +00:00
|
|
|
void bsv_movie_set_path(const char *path);
|
|
|
|
|
|
|
|
void bsv_movie_set_start_path(const char *path);
|
|
|
|
|
2017-01-22 15:59:55 +00:00
|
|
|
void bsv_movie_set_frame_start(void);
|
|
|
|
|
|
|
|
void bsv_movie_set_frame_end(void);
|
|
|
|
|
2017-01-22 16:03:42 +00:00
|
|
|
bool bsv_movie_get_input(int16_t *bsv_data);
|
|
|
|
|
2015-11-30 23:04:04 +00:00
|
|
|
bool bsv_movie_ctl(enum bsv_ctl_state state, void *data);
|
|
|
|
|
2016-09-16 23:54:33 +00:00
|
|
|
bool bsv_movie_check(void);
|
|
|
|
|
2015-12-01 00:38:45 +00:00
|
|
|
bool bsv_movie_init_handle(const char *path, enum rarch_movie_type type);
|
|
|
|
|
2016-06-03 00:39:35 +00:00
|
|
|
RETRO_END_DECLS
|
2014-11-29 20:18:45 +00:00
|
|
|
|
2011-02-02 10:47:05 +00:00
|
|
|
#endif
|