RetroArch/movie.h

89 lines
2.2 KiB
C
Raw Normal View History

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
2016-01-10 03:06:50 +00:00
* Copyright (C) 2011-2016 - 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
#ifdef __cplusplus
extern "C" {
#endif
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
#include <boolean.h>
2011-02-02 10:47:05 +00:00
2016-02-04 19:56:22 +00:00
#define BSV_MAGIC 0x42535631
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
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
{
2012-04-21 21:25:32 +00:00
RARCH_MOVIE_PLAYBACK,
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,
2015-11-30 23:04:04 +00:00
BSV_MOVIE_CTL_PLAYBACK_ON,
BSV_MOVIE_CTL_PLAYBACK_OFF,
2016-01-30 02:25:47 +00:00
/* Playback. */
BSV_MOVIE_CTL_GET_INPUT,
/* Recording. */
BSV_MOVIE_CTL_SET_INPUT,
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,
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,
BSV_MOVIE_CTL_SET_FRAME_START,
BSV_MOVIE_CTL_SET_FRAME_END,
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_END,
BSV_MOVIE_CTL_SET_END,
BSV_MOVIE_CTL_UNSET_END
2015-11-30 23:04:04 +00:00
};
const char *bsv_movie_get_path(void);
void bsv_movie_set_path(const char *path);
void bsv_movie_set_start_path(const char *path);
2015-11-30 23:04:04 +00:00
bool bsv_movie_ctl(enum bsv_ctl_state state, void *data);
bool bsv_movie_init_handle(const char *path, enum rarch_movie_type type);
#ifdef __cplusplus
}
#endif
2011-02-02 10:47:05 +00:00
#endif