You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
514 B
16 lines
514 B
diff -uNr ffmpeg-3.4.2/libavformat/mpegts.c ffmpeg-3.4.2_fix_mpegts/libavformat/mpegts.c
|
|
--- ffmpeg-3.4.2/libavformat/mpegts.c 2018-02-12 01:29:06.000000000 +0100
|
|
+++ ffmpeg-3.4.2_fix_mpegts/libavformat/mpegts.c 2018-02-14 19:36:28.175054407 +0100
|
|
@@ -930,10 +930,12 @@
|
|
pes->buffer = NULL;
|
|
reset_pes_packet_state(pes);
|
|
|
|
+ /*
|
|
sd = av_packet_new_side_data(pkt, AV_PKT_DATA_MPEGTS_STREAM_ID, 1);
|
|
if (!sd)
|
|
return AVERROR(ENOMEM);
|
|
*sd = pes->stream_id;
|
|
+ */
|
|
|
|
return 0;
|
|
}
|
|
|