Index: media/formats/mp2t/ts_section_pmt.h |
diff --git a/media/formats/mp2t/ts_section_pmt.h b/media/formats/mp2t/ts_section_pmt.h |
index 6c82d78ff655c5ab226c5766247f6768f9a749b9..7eefb63c0022b9fdf321a62e6e4575ca37788bf6 100644 |
--- a/media/formats/mp2t/ts_section_pmt.h |
+++ b/media/formats/mp2t/ts_section_pmt.h |
@@ -5,8 +5,11 @@ |
#ifndef MEDIA_FORMATS_MP2T_TS_SECTION_PMT_H_ |
#define MEDIA_FORMATS_MP2T_TS_SECTION_PMT_H_ |
+#include <string> |
+ |
#include "base/callback.h" |
#include "base/compiler_specific.h" |
+#include "media/formats/mp2t/descriptors.h" |
#include "media/formats/mp2t/ts_section_psi.h" |
namespace media { |
@@ -14,11 +17,11 @@ namespace mp2t { |
class TsSectionPmt : public TsSectionPsi { |
public: |
- // RegisterPesCb::Run(int pes_pid, int stream_type); |
+ // RegisterPesCb::Run(int pes_pid, int stream_type, Descriptors descriptors); |
// Stream type is defined in |
// "Table 2-34 – Stream type assignments" in H.222 |
// TODO(damienv): add the program number. |
- typedef base::Callback<void(int, int)> RegisterPesCb; |
+ typedef base::Callback<void(int, int, const Descriptors&)> RegisterPesCb; |
explicit TsSectionPmt(const RegisterPesCb& register_pes_cb); |
~TsSectionPmt() override; |