/external/chromium_org/build/linux/unbundle/ |
flac.gyp | 13 'FLAC/callback.h', 14 'FLAC/metadata.h', 15 'FLAC/assert.h', 16 'FLAC/export.h', 17 'FLAC/format.h', 18 'FLAC/stream_decoder.h', 19 'FLAC/stream_encoder.h', 20 'FLAC/ordinals.h', 21 'FLAC/all.h', 29 '<!@(pkg-config --libs-only-L --libs-only-other flac)', [all...] |
replace_gyp_files.py | 21 'use_system_flac': 'third_party/flac/flac.gyp',
|
/external/flac/libFLAC/ |
flac.pc.in | 6 Name: FLAC 10 Cflags: -I${includedir}/FLAC
|
ogg_encoder_aspect.c | 37 #include "FLAC/assert.h" 91 * The basic FLAC -> Ogg mapping goes like this: 93 * - 'fLaC' magic and STREAMINFO block get combined into the first 96 * + 'FLAC' magic 97 * + the 2 byte Ogg FLAC mapping version number 104 * - Each subsequent FLAC audio frame goes into its own packet. 108 * separate write callback for the fLaC magic, and then separate write 120 * Treat fLaC magic packet specially. We will note when we see it, then 152 /* add 'FLAC' mapping magic */ 155 /* add Ogg FLAC mapping major version number * [all...] |
libFLAC_dynamic.vcproj | 377 RelativePath="..\..\include\FLAC\all.h"
381 RelativePath="..\..\include\FLAC\assert.h"
385 RelativePath="..\..\include\FLAC\callback.h"
389 RelativePath="..\..\include\FLAC\export.h"
393 RelativePath="..\..\include\FLAC\format.h"
397 RelativePath="..\..\include\FLAC\metadata.h"
401 RelativePath="..\..\include\FLAC\ordinals.h"
405 RelativePath="..\..\include\FLAC\stream_decoder.h"
409 RelativePath="..\..\include\FLAC\stream_encoder.h"
|
libFLAC_static.vcproj | 256 RelativePath="..\..\include\FLAC\all.h"
260 RelativePath="..\..\include\FLAC\assert.h"
264 RelativePath="..\..\include\FLAC\callback.h"
268 RelativePath="..\..\include\FLAC\export.h"
272 RelativePath="..\..\include\FLAC\format.h"
276 RelativePath="..\..\include\FLAC\metadata.h"
280 RelativePath="..\..\include\FLAC\ordinals.h"
284 RelativePath="..\..\include\FLAC\stream_decoder.h"
288 RelativePath="..\..\include\FLAC\stream_encoder.h"
|
Makefile.am | 80 pkgconfig_DATA = flac.pc 84 flac.pc.in \
|
/external/flac/include/FLAC/ |
all.h | 49 * This is the documentation for the FLAC C and C++ APIs. It is 53 * knowledge of the FLAC format, documented 56 * \section c_api FLAC C API 58 * The FLAC C API is the interface to libFLAC, a set of structures 59 * describing the components of FLAC streams, and functions for 60 * encoding and decoding streams, as well as manipulating FLAC 62 * in your include area (for example /usr/include/FLAC/...). 65 * relatively easy to add FLAC support to another program. The 72 * metadata interface for manipulating metadata in FLAC files. It 73 * allows the user to add, delete, and modify FLAC metadata block [all...] |
export.h | 35 /** \file include/FLAC/export.h 44 /** \defgroup flac_export FLAC/export.h: export symbols 45 * \ingroup flac 82 /** \c 1 if the library has been compiled with support for Ogg FLAC, else \c 0. */
|
format.h | 42 /** \file include/FLAC/format.h 46 * of FLAC format components in memory. These are the basic 53 /** \defgroup flac_format FLAC/format.h: format components 54 * \ingroup flac 58 * of FLAC format components in memory. These are the basic 62 * <A HREF="../format.html">FLAC format</A>. Many of the values here 87 Most of the values described in this file are defined by the FLAC 100 /** The maximum block size, in samples, permitted by the FLAC subset for 116 * FLAC__MAX_BITS_PER_SAMPLE is the limit of the FLAC format. However, 124 * ((2 ^ 16) - 1) * 10; see <A HREF="../format.html">FLAC format</A [all...] |
callback.h | 38 /** \file include/FLAC/callback.h 42 * to the other FLAC interfaces. 48 /** \defgroup flac_callbacks FLAC/callback.h: I/O callback structures 49 * \ingroup flac 53 * to the other FLAC interfaces. 59 * specifying FLAC files to operate on. This is problematic in some 61 * callbacks for doing I/O on the FLAC file, instead of the filename. 73 * these use 32-bit offsets and FLAC requires 64-bit offsets to deal with 162 * Each FLAC interface that requires a FLAC__IOCallbacks structure will
|
metadata.h | 46 /** \file include/FLAC/metadata.h 49 * This module provides functions for creating and manipulating FLAC 51 * interfaces for traversing and editing metadata in FLAC files. 57 /** \defgroup flac_metadata FLAC/metadata.h: metadata interfaces 58 * \ingroup flac 61 * This module provides functions for creating and manipulating FLAC 63 * interfaces for traversing and editing metadata in native FLAC files. 65 * FLAC files, and it is read-only i.e. no writing back changed 85 * What do we mean by efficient? Since FLAC metadata appears at the 86 * beginning of the file, when writing metadata back to a FLAC fil [all...] |
stream_encoder.h | 45 /** \file include/FLAC/stream_encoder.h 55 /** \defgroup flac_encoder FLAC/ \*_encoder.h: encoder interfaces 56 * \ingroup flac 64 * callback which will be called whenever FLAC data is ready to be written. 74 /** \defgroup flac_stream_encoder FLAC/stream_encoder.h: stream encoder interface 81 * The stream encoder can encode to native FLAC, and optionally Ogg FLAC 93 * - FLAC__stream_encoder_set_ogg_serial_number() (if encoding to Ogg FLAC) 102 * of the FLAC format is necessary to achieve good results. 106 * or FLAC__stream_encoder_init_file() for native FLAC [all...] |
stream_decoder.h | 44 /** \file include/FLAC/stream_decoder.h 54 /** \defgroup flac_decoder FLAC/ \*_decoder.h: decoder interfaces 55 * \ingroup flac 63 * callbacks for reading FLAC data and writing decoded samples, and 66 * FLAC input is also available. When decoding from a file, the client 72 /** \defgroup flac_stream_decoder FLAC/stream_decoder.h: stream decoder interface 79 * The stream decoder can decode native FLAC, and optionally Ogg FLAC 90 * or FLAC__stream_decoder_init_file() for native FLAC, 92 * or FLAC__stream_decoder_init_ogg_file() for Ogg FLAC [all...] |
/frameworks/av/media/libstagefright/codecs/flac/enc/ |
Android.mk | 10 external/flac/include
|
SoftFlacEncoder.h | 23 #include "FLAC/stream_encoder.h" 25 // use this symbol to have the first output buffer start with FLAC frame header so a dump of 26 // all the output buffers can be opened as a .flac file 77 // FLAC encoder callbacks 87 // FLAC takes samples aligned on 32bit boundaries, use this buffer for the conversion
|
/external/flac/libFLAC/include/private/ |
ogg_mapping.h | 35 #include "FLAC/ordinals.h" 37 /** The length of the 'FLAC' magic in bytes. */ 44 /** The length of the 'FLAC' magic in bytes. */ 47 extern const FLAC__byte * const FLAC__OGG_MAPPING_MAGIC; /* = "FLAC" */ 52 /** The length of the Ogg FLAC mapping major version number in bytes. */ 55 /** The length of the Ogg FLAC mapping minor version number in bytes. */
|
ogg_encoder_aspect.h | 37 #include "FLAC/ordinals.h" 38 #include "FLAC/stream_encoder.h" /* for FLAC__StreamEncoderWriteStatus */ 48 FLAC__bool seen_magic; /* true if we've seen the fLaC magic in the write callback yet */
|
ogg_decoder_aspect.h | 37 #include "FLAC/ordinals.h" 38 #include "FLAC/stream_decoder.h" /* for FLAC__StreamDecoderReadStatus */
|
md5.h | 29 #include "FLAC/ordinals.h"
|
/external/chromium/chrome/browser/resources/shared/js/ |
media_common.js | 10 return /\.(aac|aiff|atrac|cda|flac|m4a|mp3|pcm|oga|ogg|raw|wav)$/i.test(path);
|
/external/chromium_org/ui/webui/resources/js/ |
media_common.js | 10 return /\.(aac|aiff|atrac|cda|flac|m4a|mp3|pcm|oga|ogg|raw|wav)$/i.test(path);
|
/external/chromium_org/content/browser/speech/ |
audio_encoder.cc | 13 #include "third_party/flac/include/FLAC/stream_encoder.h" 21 const char* const kContentTypeFLAC = "audio/x-flac; rate="; 89 // FLAC encoder wants samples as int32s.
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaCodecListTest.java | 227 // flac decoder is not omx-based yet 228 // list.add(new CodecType("audio/flac", false)); // flac decoder 229 list.add(new CodecType("audio/flac", true)); // flac encoder
|
/external/chromium_org/chrome/browser/media_galleries/fileapi/ |
media_path_filter.cc | 66 FILE_PATH_LITERAL("flac"), // audio/x-flac
|