Fix Netflix HSC Startup Metrics

The HSC trace_processor netflix hsc startup metrics had a bug where it
could use frames from other applications. This CL adds the appropriate
filtering.

Bug: 150689245
Test: ./trace_processor_shell --run-metrics android_startup
[netflix_trace]

Change-Id: I60f4a76308380e0c02d84977d25f48c9482109db
diff --git a/src/trace_processor/metrics/android/hsc_startups.sql b/src/trace_processor/metrics/android/hsc_startups.sql
index 330aa63..a989db0 100644
--- a/src/trace_processor/metrics/android/hsc_startups.sql
+++ b/src/trace_processor/metrics/android/hsc_startups.sql
@@ -46,7 +46,7 @@
     frame_times.ts_end - launches.ts as ts_total
 FROM frame_times
 INNER JOIN launches on launches.package LIKE '%' || frame_times.name || '%'
-WHERE frame_times.ts < (SELECT ts FROM functions WHERE function_name LIKE "animator%" AND process_name LIKE "%lix.mediaclient" ORDER BY ts LIMIT 1)
+WHERE frame_times.ts < (SELECT ts FROM functions WHERE function_name LIKE "animator%" AND process_name LIKE "%lix.mediaclient" ORDER BY ts LIMIT 1) AND frame_times.name LIKE "%lix.mediaclient%"
 ORDER BY ts_total LIMIT 1;
 
 -- Maps