diff options
author | James Almer <jamrial@gmail.com> | 2024-08-29 21:17:38 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-08-31 11:11:42 -0300 |
commit | 9d095f127a38c587ebc217353e80d400d77629fc (patch) | |
tree | 4bec4960326c99c9c1382c638828dae661bd7ae5 /libavformat/isom.h | |
parent | 4c0372281b1e0886907b8b69e4f1bb292a9bd441 (diff) | |
download | ffmpeg-9d095f127a38c587ebc217353e80d400d77629fc.tar.gz |
avformat/isom: make parameters used for loging a pointer to void
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index 5b6125a908..15e9466e41 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -363,8 +363,8 @@ typedef struct MOVContext { } MOVContext; int ff_mp4_read_descr_len(AVIOContext *pb); -int ff_mp4_read_descr(AVFormatContext *fc, AVIOContext *pb, int *tag); -int ff_mp4_read_dec_config_descr(AVFormatContext *fc, AVStream *st, AVIOContext *pb); +int ff_mp4_read_descr(void *logctx, AVIOContext *pb, int *tag); +int ff_mp4_read_dec_config_descr(void *logctx, AVStream *st, AVIOContext *pb); void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id); #define MP4ODescrTag 0x01 |