The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / ffmpeg / 0011-Speed-up-mpegts-av_find_stream_info.patch
1 From c315a758a292200c22925603682e259849d6d558 Mon Sep 17 00:00:00 2001
2 From: Joakim Plate <elupus@ecce.se>
3 Date: Mon, 28 Jun 2010 21:26:54 +0000
4 Subject: [PATCH 11/13] Speed up mpegts av_find_stream_info
5
6 Patch part of the XBMC patch set for ffmpeg, downloaded from
7 https://github.com/xbmc/FFmpeg/.
8
9 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
10 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
11 ---
12  libavformat/mpegts.c | 2 +-
13  1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
16 index e070f1f..dd9e129 100644
17 --- a/libavformat/mpegts.c
18 +++ b/libavformat/mpegts.c
19 @@ -994,7 +994,7 @@ static int mpegts_push_data(MpegTSFilter *filter,
20                          goto skip;
21  
22                      /* stream not present in PMT */
23 -                    if (!pes->st) {
24 +                    if (ts->auto_guess && !pes->st) {
25                          if (ts->skip_changes)
26                              goto skip;
27  
28 -- 
29 2.1.0
30