Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1274)

Unified Diff: media/media.gyp

Issue 23566013: Mpeg2 TS stream parser for media source. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improve buffer emission + Cleanup Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/media.gyp
diff --git a/media/media.gyp b/media/media.gyp
index 29f7c6d1fae8d3a8d5dbcaf874360aced441ced7..4913b52386b051d0cae54771bbeb63c9f2143c8e 100644
--- a/media/media.gyp
+++ b/media/media.gyp
@@ -861,6 +861,25 @@
'mp4/offset_byte_queue.h',
'mp4/track_run_iterator.cc',
'mp4/track_run_iterator.h',
+ 'mp2t/es_parser.h',
acolwell GONE FROM CHROMIUM 2013/09/18 01:46:05 nit: move these above the mp4 code so that they ar
damienv1 2013/09/18 21:40:17 Done.
+ 'mp2t/es_parser_adts.cc',
+ 'mp2t/es_parser_adts.h',
+ 'mp2t/es_parser_h264.cc',
+ 'mp2t/es_parser_h264.h',
+ 'mp2t/mp2t_common.h',
+ 'mp2t/mp2t_stream_parser.cc',
+ 'mp2t/mp2t_stream_parser.h',
+ 'mp2t/ts_packet.cc',
+ 'mp2t/ts_packet.h',
+ 'mp2t/ts_section.h',
+ 'mp2t/ts_section_pat.cc',
+ 'mp2t/ts_section_pat.h',
+ 'mp2t/ts_section_pes.cc',
+ 'mp2t/ts_section_pes.h',
+ 'mp2t/ts_section_pmt.cc',
+ 'mp2t/ts_section_pmt.h',
+ 'mp2t/ts_section_psi.cc',
+ 'mp2t/ts_section_psi.h',
],
}],
['toolkit_uses_gtk==1', {
@@ -1127,6 +1146,7 @@
'mp4/mp4_stream_parser_unittest.cc',
'mp4/offset_byte_queue_unittest.cc',
'mp4/track_run_iterator_unittest.cc',
+ 'mp2t/mp2t_stream_parser_unittest.cc',
acolwell GONE FROM CHROMIUM 2013/09/18 01:46:05 ditto
damienv1 2013/09/18 21:40:17 Done.
],
}],
# TODO(wolenetz): Fix size_t to int truncations in win64. See

Powered by Google App Engine
This is Rietveld 408576698