(Record) ffemu_new now returns void *
This commit is contained in:
parent
1dfec21dde
commit
77401692cb
|
@ -647,7 +647,7 @@ static void deinit_thread_buf(ffemu_t *handle)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ffemu_t *ffemu_new(const void *data)
|
void *ffemu_new(const void *data)
|
||||||
{
|
{
|
||||||
const struct ffemu_params *params = (const struct ffemu_params*)data;
|
const struct ffemu_params *params = (const struct ffemu_params*)data;
|
||||||
av_register_all();
|
av_register_all();
|
||||||
|
|
|
@ -80,7 +80,7 @@ struct ffemu_audio_data
|
||||||
|
|
||||||
typedef struct ffemu ffemu_t;
|
typedef struct ffemu ffemu_t;
|
||||||
|
|
||||||
ffemu_t *ffemu_new(const void *data);
|
void *ffemu_new(const void *data);
|
||||||
void ffemu_free(void *data);
|
void ffemu_free(void *data);
|
||||||
|
|
||||||
bool ffemu_push_video(void *data, const void *_video_data);
|
bool ffemu_push_video(void *data, const void *_video_data);
|
||||||
|
|
Loading…
Reference in New Issue