diff mbox series

[FFmpeg-devel] rtpenc_mpegts: add AVClass to the muxer context

Message ID 20210331131518.2007-1-ffmpeg@gyani.pro
State Accepted
Commit eac77f7cf076575af1a21b3fb61f45826436584e
Headers show
Series [FFmpeg-devel] rtpenc_mpegts: add AVClass to the muxer context | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Gyan Doshi March 31, 2021, 1:15 p.m. UTC
---
 libavformat/rtpenc_mpegts.c | 1 +
 1 file changed, 1 insertion(+)

Will backport to 4.4

Comments

Anton Khirnov March 31, 2021, 6:54 p.m. UTC | #1
Quoting Gyan Doshi (2021-03-31 15:15:18)
> ---
>  libavformat/rtpenc_mpegts.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> Will backport to 4.4
> 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;
> -- 
> 2.30.1

LGTM
Gyan Doshi April 1, 2021, 4:40 a.m. UTC | #2
On 2021-04-01 00:24, Anton Khirnov wrote:
> Quoting Gyan Doshi (2021-03-31 15:15:18)
>> ---
>>   libavformat/rtpenc_mpegts.c | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> Will backport to 4.4
>> 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;
>> -- 
>> 2.30.1
> LGTM

Thanks. Pushed as eac77f7cf076575af1a21b3fb61f45826436584e

Gyan
diff mbox series

Patch

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;