Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chromecast / media / cma / test / frame_segmenter_for_test.h
blob259c23e982058a0803d5ed1faba82af0f576f871
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROMECAST_MEDIA_CMA_TEST_FRAME_SEGMENTER_FOR_TEST_H_
6 #define CHROMECAST_MEDIA_CMA_TEST_FRAME_SEGMENTER_FOR_TEST_H_
8 #include <list>
10 #include "base/basictypes.h"
11 #include "base/memory/ref_counted.h"
12 #include "media/base/audio_decoder_config.h"
13 #include "media/base/video_decoder_config.h"
15 namespace base {
16 class FilePath;
19 namespace chromecast {
20 namespace media {
21 class DecoderBufferBase;
23 typedef std::list<scoped_refptr<DecoderBufferBase> > BufferList;
25 // Implement some basic frame segmenters good enough for unit tests.
26 BufferList Mp3SegmenterForTest(const uint8* data, size_t data_size);
27 BufferList H264SegmenterForTest(const uint8* data, size_t data_size);
29 struct DemuxResult {
30 DemuxResult();
31 ~DemuxResult();
33 ::media::AudioDecoderConfig audio_config;
34 ::media::VideoDecoderConfig video_config;
35 BufferList frames;
38 DemuxResult FFmpegDemuxForTest(const base::FilePath& filepath,
39 bool audio);
41 } // namespace media
42 } // namespace chromecast
44 #endif // CHROMECAST_MEDIA_CMA_TEST_FRAME_SEGMENTER_FOR_TEST_H_