mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
libav: Fix signature of avprotocol write function for ffmpeg 7
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7148>
This commit is contained in:
parent
bd7b5b166d
commit
2cdaa79da6
1 changed files with 4 additions and 0 deletions
|
@ -102,7 +102,11 @@ gst_ffmpegdata_read (void *priv_data, unsigned char *buf, int size)
|
|||
}
|
||||
|
||||
static int
|
||||
#if LIBAVUTIL_VERSION_MAJOR >= 59
|
||||
gst_ffmpegdata_write (void *priv_data, const uint8_t * buf, int size)
|
||||
#else
|
||||
gst_ffmpegdata_write (void *priv_data, uint8_t * buf, int size)
|
||||
#endif
|
||||
{
|
||||
GstProtocolInfo *info;
|
||||
GstBuffer *outbuf;
|
||||
|
|
Loading…
Reference in a new issue