Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
2e5e6445
Kaydet (Commit)
2e5e6445
authored
Ock 09, 2004
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added support for APIs in MediaHandlers.h.
üst
73b3df9a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
_Qtmodule.c
Mac/Modules/qt/_Qtmodule.c
+0
-0
qtscan.py
Mac/Modules/qt/qtscan.py
+19
-1
No files found.
Mac/Modules/qt/_Qtmodule.c
Dosyayı görüntüle @
2e5e6445
This diff is collapsed.
Click to expand it.
Mac/Modules/qt/qtscan.py
Dosyayı görüntüle @
2e5e6445
...
@@ -8,7 +8,13 @@ from scantools import Scanner
...
@@ -8,7 +8,13 @@ from scantools import Scanner
LONG
=
"QuickTime"
LONG
=
"QuickTime"
SHORT
=
"qt"
SHORT
=
"qt"
HEADERFILES
=
(
"Movies.h"
,
"ImageCompression.h"
,
"QuickTimeComponents.h"
)
HEADERFILES
=
(
"Movies.h"
,
"ImageCompression.h"
,
"QuickTimeComponents.h"
,
# "ImageCodec.h" -- seems not too useful, and difficult.
"MediaHandlers.h"
)
OBJECTS
=
(
"Movie"
,
"Track"
,
"Media"
,
"UserData"
,
"TimeBase"
,
"MovieController"
,
OBJECTS
=
(
"Movie"
,
"Track"
,
"Media"
,
"UserData"
,
"TimeBase"
,
"MovieController"
,
"IdleManager"
,
"SGOutput"
)
"IdleManager"
,
"SGOutput"
)
...
@@ -90,6 +96,10 @@ class MyScanner(Scanner):
...
@@ -90,6 +96,10 @@ class MyScanner(Scanner):
"VDCompressDone"
,
"VDCompressDone"
,
"VDReleaseCompressBuffer"
,
"VDReleaseCompressBuffer"
,
"QTVideoOutputGetGWorldParameters"
,
# How useful is this?
"QTVideoOutputGetGWorldParameters"
,
# How useful is this?
# MediaHandlers
"MediaMakeMediaTimeTable"
,
# just lazy
"MediaGetSampleDataPointer"
,
# funny output pointer
]
]
def
makeblacklisttypes
(
self
):
def
makeblacklisttypes
(
self
):
...
@@ -205,6 +215,14 @@ class MyScanner(Scanner):
...
@@ -205,6 +215,14 @@ class MyScanner(Scanner):
"XMLDoc"
,
"XMLDoc"
,
"UInt64"
,
# XXXX lazy
"UInt64"
,
# XXXX lazy
"UInt64_ptr"
,
# XXXX lazy
"UInt64_ptr"
,
# XXXX lazy
# From MediaHandlers
"ActionsUPP"
,
"PrePrerollCompleteUPP"
,
"CodecComponentHandle"
,
# Difficult: handle containing list of components.
"GetMovieCompleteParams"
,
# Immense struct
"LevelMeterInfoPtr"
,
# Lazy. Also: can be an output parameter!!
"MediaEQSpectrumBandsRecordPtr"
,
# ditto
]
]
def
makerepairinstructions
(
self
):
def
makerepairinstructions
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment