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:
Martin Storsjö 2011-05-20 11:33:57 +03:00
parent f255a28d14
commit 50fefa10de

View File

@ -53,6 +53,7 @@ typedef struct MpegTSService {
} MpegTSService; } MpegTSService;
typedef struct MpegTSWrite { typedef struct MpegTSWrite {
const AVClass *av_class;
MpegTSSection pat; /* MPEG2 pat table */ MpegTSSection pat; /* MPEG2 pat table */
MpegTSSection sdt; /* MPEG2 sdt table context */ MpegTSSection sdt; /* MPEG2 sdt table context */
MpegTSService **services; MpegTSService **services;