Searched refs:aifc (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_aifc.py | 12 aifc = import_deprecated("aifc") variable 18 module = aifc 110 sndfilename = 'pluck-ulaw.aifc' 131 sndfilename = 'pluck-alaw.aifc' 154 #This file contains chunk types aifc doesn't recognize. 155 f = aifc.open(findfile('Sine-1000Hz-300ms.aif')) 161 with self.assertRaises(aifc.Error): 163 # `aifc.open` will fail (without raising a ResourceWarning) 164 self.f = aifc [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | aiffenc.c | 105 int i, aifc = 0; in aiff_write_header() local 128 aifc = 1; in aiff_write_header() 134 ffio_wfourcc(pb, aifc ? "AIFC" : "AIFF"); in aiff_write_header() 136 if (aifc) { // compressed audio in aiff_write_header() 160 avio_wb32(pb, aifc ? 24 : 18); /* size */ in aiff_write_header() 181 if (aifc) { in aiff_write_header() 291 .extensions = "aif,aiff,afc,aifc",
|
/third_party/python/Lib/ |
H A D | sndhdr.py | 45 and will be one of the strings 'aifc', 'aiff', 'au','hcom', 83 import aifc namespace 87 fmt = 'aifc' 94 a = aifc.open(f, 'r') 95 except (EOFError, aifc.Error):
|
H A D | aifc.py | 57 f = aifc.open(file, 'r') 90 f = aifc.open(file, 'w') 97 aifc() -- create an AIFF-C file 133 changed by calling aiff() or aifc() before the first writeframes or 567 # set through the aifc() method, reset through the 629 def aifc(self): member in Aifc_write
|
Completed in 3 milliseconds