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.

19 lines
579 B

Fix VIDEO_GET_PTS error in libeplayer3 intruduced in:
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?p=ffmpeg.git;a=commitdiff;h=14f7a3d55a43c1082ee1186a1990a431c641052d
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -917,10 +917,10 @@
pes->buffer = NULL;
reset_pes_packet_state(pes);
- sd = av_packet_new_side_data(pkt, AV_PKT_DATA_MPEGTS_STREAM_ID, 1);
+ /*sd = av_packet_new_side_data(pkt, AV_PKT_DATA_MPEGTS_STREAM_ID, 1);
if (!sd)
return AVERROR(ENOMEM);
- *sd = pes->stream_id;
+ *sd = pes->stream_id;*/
return 0;
}