diff options
author | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-20 19:46:42 +0000 |
---|---|---|
committer | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-20 19:46:42 +0000 |
commit | ad7c95d5cbfc96888b6b3db29db40fa8f890b6d1 (patch) | |
tree | d623b0192a6706c835f3bed66e1ecb03a0aaac90 /media/mp2t/ts_section_pat.h | |
parent | f38b6f017f308d1433d863cf792cea398237de0a (diff) | |
download | chromium_src-ad7c95d5cbfc96888b6b3db29db40fa8f890b6d1.zip chromium_src-ad7c95d5cbfc96888b6b3db29db40fa8f890b6d1.tar.gz chromium_src-ad7c95d5cbfc96888b6b3db29db40fa8f890b6d1.tar.bz2 |
Revert 224404 "Mpeg2 TS stream parser for media source."
Doesn't compile on Windows: http://build.chromium.org/p/chromium.chrome/builders/Google%20Chrome%20Win/builds/20686/steps/compile/logs/stdio
> Mpeg2 TS stream parser for media source.
>
> BUG=254214
> TEST=Mp2tStreamParserTest.*
>
> Review URL: https://chromiumcodereview.appspot.com/23566013
TBR=damienv@chromium.org
Review URL: https://codereview.chromium.org/24096030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224460 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/mp2t/ts_section_pat.h')
-rw-r--r-- | media/mp2t/ts_section_pat.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/media/mp2t/ts_section_pat.h b/media/mp2t/ts_section_pat.h deleted file mode 100644 index 84f33de..0000000 --- a/media/mp2t/ts_section_pat.h +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright 2013 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef MEDIA_MP2T_TS_SECTION_PAT_H_ -#define MEDIA_MP2T_TS_SECTION_PAT_H_ - -#include "base/callback.h" -#include "base/compiler_specific.h" -#include "media/mp2t/ts_section_psi.h" - -namespace media { -namespace mp2t { - -class TsSectionPat : public TsSectionPsi { - public: - // RegisterPmtCb::Run(int program_number, int pmt_pid); - typedef base::Callback<void(int, int)> RegisterPmtCb; - - explicit TsSectionPat(const RegisterPmtCb& register_pmt_cb); - virtual ~TsSectionPat(); - - // TsSectionPsi implementation. - virtual bool ParsePsiSection(BitReader* bit_reader) OVERRIDE; - virtual void ResetPsiSection() OVERRIDE; - - private: - RegisterPmtCb register_pmt_cb_; - - // Parameters from the PAT. - int version_number_; - - DISALLOW_COPY_AND_ASSIGN(TsSectionPat); -}; - -} // namespace mp2t -} // namespace media - -#endif - |