1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

avcodec/avcodec_internal: fix type definition for the new functions

Fixes make checkheaders.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2024-08-12 23:08:28 -03:00
parent 472fbee812
commit 82085a3e0a

View File

@ -89,18 +89,18 @@ void ff_thread_flush(struct AVCodecContext *avctx);
* *
* Parameters are the same as FFCodec.receive_frame. * Parameters are the same as FFCodec.receive_frame.
*/ */
int ff_thread_receive_frame(AVCodecContext *avctx, AVFrame *frame); int ff_thread_receive_frame(struct AVCodecContext *avctx, AVFrame *frame);
/** /**
* Do the actual decoding and obtain a decoded frame from the decoder, if * Do the actual decoding and obtain a decoded frame from the decoder, if
* available. When frame threading is used, this is invoked by the worker * available. When frame threading is used, this is invoked by the worker
* threads, otherwise by the top layer directly. * threads, otherwise by the top layer directly.
*/ */
int ff_decode_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame); int ff_decode_receive_frame_internal(struct AVCodecContext *avctx, AVFrame *frame);
/** /**
* Get a packet for decoding. This gets invoked by the worker threads. * Get a packet for decoding. This gets invoked by the worker threads.
*/ */
int ff_thread_get_packet(AVCodecContext *avctx, AVPacket *pkt); int ff_thread_get_packet(struct AVCodecContext *avctx, AVPacket *pkt);
#endif // AVCODEC_AVCODEC_INTERNAL_H #endif // AVCODEC_AVCODEC_INTERNAL_H