2012-04-21 21:13:50 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2013-01-01 00:37:37 +00:00
|
|
|
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
2011-12-24 12:46:12 +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-12-24 12:46:12 +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-12-24 12:46:12 +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-12-24 12:46:12 +00:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2011-01-03 16:51:17 +00:00
|
|
|
#ifndef __FFEMU_H
|
|
|
|
#define __FFEMU_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-08-25 20:38:49 +00:00
|
|
|
enum ffemu_pix_format
|
|
|
|
{
|
2012-10-19 23:12:02 +00:00
|
|
|
FFEMU_PIX_RGB565 = 0,
|
2012-08-25 20:38:49 +00:00
|
|
|
FFEMU_PIX_BGR24,
|
|
|
|
FFEMU_PIX_ARGB8888
|
|
|
|
};
|
|
|
|
|
2011-01-03 16:51:17 +00:00
|
|
|
// Parameters passed to ffemu_new()
|
|
|
|
struct ffemu_params
|
|
|
|
{
|
2011-11-16 17:56:42 +00:00
|
|
|
// FPS of input video.
|
|
|
|
double fps;
|
|
|
|
// Sample rate of input audio.
|
|
|
|
double samplerate;
|
|
|
|
|
2011-01-03 16:51:17 +00:00
|
|
|
// Desired output resolution.
|
|
|
|
unsigned out_width;
|
|
|
|
unsigned out_height;
|
2011-06-14 20:44:54 +00:00
|
|
|
|
|
|
|
// Total size of framebuffer used in input.
|
|
|
|
unsigned fb_width;
|
|
|
|
unsigned fb_height;
|
2011-01-03 16:51:17 +00:00
|
|
|
|
2011-11-16 17:56:42 +00:00
|
|
|
// Aspect ratio of input video. Parameters are passed to the muxer,
|
|
|
|
// the video itself is not scaled.
|
|
|
|
float aspect_ratio;
|
2011-01-03 16:51:17 +00:00
|
|
|
|
|
|
|
// Audio channels.
|
|
|
|
unsigned channels;
|
|
|
|
|
2012-11-23 21:46:21 +00:00
|
|
|
// Input pixel format.
|
2012-08-25 20:38:49 +00:00
|
|
|
enum ffemu_pix_format pix_fmt;
|
2011-08-11 03:25:31 +00:00
|
|
|
|
2011-01-04 14:44:05 +00:00
|
|
|
// Filename to dump to.
|
|
|
|
const char *filename;
|
2012-11-23 21:46:21 +00:00
|
|
|
|
|
|
|
// Path to config. Optional.
|
|
|
|
const char *config;
|
2011-01-03 16:51:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ffemu_video_data
|
|
|
|
{
|
|
|
|
const void *data;
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2012-08-25 20:38:49 +00:00
|
|
|
int pitch;
|
2011-11-22 16:27:02 +00:00
|
|
|
bool is_dupe;
|
2011-01-03 16:51:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ffemu_audio_data
|
|
|
|
{
|
2012-11-24 23:25:57 +00:00
|
|
|
const void *data;
|
2011-01-03 16:51:17 +00:00
|
|
|
size_t frames;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct ffemu ffemu_t;
|
|
|
|
|
|
|
|
ffemu_t *ffemu_new(const struct ffemu_params *params);
|
|
|
|
void ffemu_free(ffemu_t* handle);
|
|
|
|
|
2011-11-16 17:56:42 +00:00
|
|
|
bool ffemu_push_video(ffemu_t *handle, const struct ffemu_video_data *data);
|
|
|
|
bool ffemu_push_audio(ffemu_t *handle, const struct ffemu_audio_data *data);
|
|
|
|
bool ffemu_finalize(ffemu_t *handle);
|
2011-01-03 16:51:17 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|