diff options
author | Michael Niedermayer | 2018-12-07 21:51:48 +0100 |
---|---|---|
committer | Michael Niedermayer | 2018-12-19 20:09:03 +0100 |
commit | ab1319d82f0c77308792fa2d88cbfc73c3e47cb7 (patch) | |
tree | 3e0bfb11b86eaffaa45788738c9cfb3bf921d8a8 /libavformat/mpegts.c | |
parent | f8f762c300e29d80ece363edc08e137b371d909f (diff) |
avformat/mpegts: Fix side data type for stream id
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r-- | libavformat/mpegts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index edf6b5701d..a5e850e121 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -918,7 +918,7 @@ static void new_data_packet(const uint8_t *buffer, int len, AVPacket *pkt) static int new_pes_packet(PESContext *pes, AVPacket *pkt) { - char *sd; + uint8_t *sd; av_init_packet(pkt); |