mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
libschroedinger: Move a function to avoid a forward declaration.
This commit is contained in:
parent
b68c4ac293
commit
1f4f752117
@ -71,7 +71,10 @@ typedef struct SchroParseUnitContext {
|
|||||||
|
|
||||||
|
|
||||||
static void libschroedinger_decode_buffer_free(SchroBuffer *schro_buf,
|
static void libschroedinger_decode_buffer_free(SchroBuffer *schro_buf,
|
||||||
void *priv);
|
void *priv)
|
||||||
|
{
|
||||||
|
av_freep(&priv);
|
||||||
|
}
|
||||||
|
|
||||||
static void SchroParseContextInit(SchroParseUnitContext *parse_ctx,
|
static void SchroParseContextInit(SchroParseUnitContext *parse_ctx,
|
||||||
const uint8_t *buf, int buf_size)
|
const uint8_t *buf, int buf_size)
|
||||||
@ -156,12 +159,6 @@ static av_cold int libschroedinger_decode_init(AVCodecContext *avccontext)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void libschroedinger_decode_buffer_free(SchroBuffer *schro_buf,
|
|
||||||
void *priv)
|
|
||||||
{
|
|
||||||
av_freep(&priv);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void libschroedinger_decode_frame_free(void *frame)
|
static void libschroedinger_decode_frame_free(void *frame)
|
||||||
{
|
{
|
||||||
schro_frame_unref(frame);
|
schro_frame_unref(frame);
|
||||||
|
Loading…
Reference in New Issue
Block a user