mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
mpegtsenc: Add an AVClass pointer to the private data
Since a private class is set for this muxer, the callers will assume that the private data starts with an AVClass pointer. If no such member exists, the first few bytes of the struct will be overwritten, and the class pointer may be broken at any later time. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
f255a28d14
commit
50fefa10de
@ -53,6 +53,7 @@ typedef struct MpegTSService {
|
||||
} MpegTSService;
|
||||
|
||||
typedef struct MpegTSWrite {
|
||||
const AVClass *av_class;
|
||||
MpegTSSection pat; /* MPEG2 pat table */
|
||||
MpegTSSection sdt; /* MPEG2 sdt table context */
|
||||
MpegTSService **services;
|
||||
|
Loading…
Reference in New Issue
Block a user