This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-utils.git tree:
Subject: dvbv5-zap: only start audio filtering if audio PID > 0 Author: Mauro Carvalho Chehab <[email protected]> Date: Sat Mar 15 09:08:09 2014 -0300 When used with -P, audio filter PID is zero. Yet, it is currently starting an audio PID filter. This could cause troubles with some hardware filters. As PID is always bigger than zero, this patch should fix the issue. Signed-off-by: Mauro Carvalho Chehab <[email protected]> utils/dvb/dvbv5-zap.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=c8f8ba42c041f2443d0f5916ee6d9b01cdf0d5b3 diff --git a/utils/dvb/dvbv5-zap.c b/utils/dvb/dvbv5-zap.c index cffac98..5c3b74c 100644 --- a/utils/dvb/dvbv5-zap.c +++ b/utils/dvb/dvbv5-zap.c @@ -853,7 +853,7 @@ int main(int argc, char **argv) } } - if (apid >= 0) { + if (apid > 0) { if (args.silent < 2) fprintf(stderr, "audio pid %d\n", apid); if ((audio_fd = open(args.demux_dev, O_RDWR)) < 0) { _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
