summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-05-20 11:33:57 +0300
committerMartin Storsjö <martin@martin.st>2011-05-20 15:16:09 +0300
commit50fefa10de920e16036f2be977c39fc0c286d024 (patch)
tree0ac6d3907b1a06af6a6ff9e0210c80d3cc902366
parentf255a28d140a64ea4c1a5060061863aec993b5ea (diff)
downloadffmpeg-streaming-50fefa10de920e16036f2be977c39fc0c286d024.zip
ffmpeg-streaming-50fefa10de920e16036f2be977c39fc0c286d024.tar.gz
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>
-rw-r--r--libavformat/mpegtsenc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c
index 2aa9698..393b779 100644
--- a/libavformat/mpegtsenc.c
+++ b/libavformat/mpegtsenc.c
@@ -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;
OpenPOWER on IntegriCloud