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
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - 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
|
|
|
|
2014-11-29 20:18:45 +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>
|
2014-10-21 03:05:52 +00:00
|
|
|
#include <boolean.h>
|
2011-02-02 10:47:05 +00:00
|
|
|
|
2012-03-25 21:48:27 +00:00
|
|
|
#define BSV_MAGIC 0x42535631
|
|
|
|
|
|
|
|
#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
|
|
|
};
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
bsv_movie_t *bsv_movie_init(const char *path, enum rarch_movie_type type);
|
2011-02-02 10:47:05 +00:00
|
|
|
|
2014-09-07 03:47:18 +00:00
|
|
|
/* Playback. */
|
2011-02-02 10:47:05 +00:00
|
|
|
bool bsv_movie_get_input(bsv_movie_t *handle, int16_t *input);
|
|
|
|
|
2014-09-07 03:47:18 +00:00
|
|
|
/* Recording. */
|
2011-02-02 10:47:05 +00:00
|
|
|
void bsv_movie_set_input(bsv_movie_t *handle, int16_t input);
|
|
|
|
|
2014-09-07 03:47:18 +00:00
|
|
|
/* Used for rewinding while playback/record. */
|
|
|
|
void bsv_movie_set_frame_start(bsv_movie_t *handle);
|
|
|
|
|
2011-02-25 10:47:27 +00:00
|
|
|
void bsv_movie_set_frame_end(bsv_movie_t *handle);
|
2014-09-07 03:47:18 +00:00
|
|
|
|
2011-02-25 10:47:27 +00:00
|
|
|
void bsv_movie_frame_rewind(bsv_movie_t *handle);
|
|
|
|
|
2011-02-02 10:47:05 +00:00
|
|
|
void bsv_movie_free(bsv_movie_t *handle);
|
|
|
|
|
2014-11-29 20:18:45 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-02 10:47:05 +00:00
|
|
|
#endif
|
|
|
|
|