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

Unified Diff: media/formats/mpeg/mp3_stream_parser.h

Issue 506943003: Support MPEG1 audio in the MPEG2-TS stream parser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address CR comments from patch set #5. Created 6 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
« no previous file with comments | « media/formats/mp2t/mp2t_stream_parser.cc ('k') | media/formats/mpeg/mp3_stream_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/mpeg/mp3_stream_parser.h
diff --git a/media/formats/mpeg/mp3_stream_parser.h b/media/formats/mpeg/mp3_stream_parser.h
deleted file mode 100644
index b5271d848be31489e9f76c6686bb447cb6bc61b3..0000000000000000000000000000000000000000
--- a/media/formats/mpeg/mp3_stream_parser.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2014 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_FORMATS_MPEG_MP3_STREAM_PARSER_H_
-#define MEDIA_FORMATS_MPEG_MP3_STREAM_PARSER_H_
-
-#include "base/basictypes.h"
-#include "media/base/media_export.h"
-#include "media/formats/mpeg/mpeg_audio_stream_parser_base.h"
-
-namespace media {
-
-class MEDIA_EXPORT MP3StreamParser : public MPEGAudioStreamParserBase {
- public:
- MP3StreamParser();
- virtual ~MP3StreamParser();
-
- private:
- // MPEGAudioStreamParserBase overrides.
- virtual int ParseFrameHeader(const uint8* data,
- int size,
- int* frame_size,
- int* sample_rate,
- ChannelLayout* channel_layout,
- int* sample_count,
- bool* metadata_frame) const OVERRIDE;
-
- DISALLOW_COPY_AND_ASSIGN(MP3StreamParser);
-};
-
-} // namespace media
-
-#endif // MEDIA_FORMATS_MPEG_MP3_STREAM_PARSER_H_
« no previous file with comments | « media/formats/mp2t/mp2t_stream_parser.cc ('k') | media/formats/mpeg/mp3_stream_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698