diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2021-03-31 18:40:48 +0530 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2021-04-01 09:36:26 +0530 |
commit | b26c6df91946bb1185d2a1ce7a5ea3b6d5c434c2 (patch) | |
tree | 266d40f80026842259e21372e9fe5939943c3b35 /libavformat | |
parent | 7a74129fa91d36450b02e605d0756375aababd1b (diff) | |
download | ffmpeg-b26c6df91946bb1185d2a1ce7a5ea3b6d5c434c2.tar.gz |
rtpenc_mpegts: add AVClass to the muxer context
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtpenc_mpegts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtpenc_mpegts.c b/libavformat/rtpenc_mpegts.c index 9f95b3a4e8..da17b1d776 100644 --- a/libavformat/rtpenc_mpegts.c +++ b/libavformat/rtpenc_mpegts.c @@ -25,6 +25,7 @@ #include "avio_internal.h" typedef struct MuxChain { + const AVClass *class; AVFormatContext *mpegts_ctx; AVFormatContext *rtp_ctx; AVPacket *pkt; |