2022-04-08 23:07:41 +08:00
|
|
|
from collections import namedtuple
|
|
|
|
|
2023-05-18 21:15:27 +08:00
|
|
|
CustomField = namedtuple("CustomField", "fields removals repositions")
|
|
|
|
Reposition = namedtuple("Reposition", "field after")
|
2022-04-08 23:07:41 +08:00
|
|
|
|
|
|
|
# Versions of the loaded libraries
|
|
|
|
versions = {
|
|
|
|
'avcodec': 0,
|
|
|
|
'avformat': 0,
|
|
|
|
'avutil': 0,
|
|
|
|
'swresample': 0,
|
|
|
|
'swscale': 0,
|
|
|
|
}
|
|
|
|
|
|
|
|
# Group codecs by version they are usually packaged with.
|
2023-05-18 21:15:27 +08:00
|
|
|
release_versions = {
|
|
|
|
4: {'avcodec': 58, 'avformat': 58, 'avutil': 56, 'swresample': 3, 'swscale': 5}, # 4.x
|
|
|
|
5: {'avcodec': 59, 'avformat': 59, 'avutil': 57, 'swresample': 4, 'swscale': 6}, # 5.x
|
|
|
|
6: {'avcodec': 60, 'avformat': 60, 'avutil': 58, 'swresample': 4, 'swscale': 7}, # 6.x
|
|
|
|
}
|
2022-04-08 23:07:41 +08:00
|
|
|
|
|
|
|
# Removals done per library and version.
|
|
|
|
_version_changes = {
|
|
|
|
'avcodec': {},
|
|
|
|
'avformat': {},
|
|
|
|
'avutil': {},
|
2022-04-09 13:08:14 +08:00
|
|
|
'swresample': {},
|
2022-04-08 23:07:41 +08:00
|
|
|
'swscale': {}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def set_version(library, version):
|
|
|
|
versions[library] = version
|
|
|
|
|
|
|
|
|
2023-05-18 21:15:27 +08:00
|
|
|
def add_version_changes(library, version, structure, fields, removals, repositions=None):
|
2022-04-08 23:07:41 +08:00
|
|
|
if version not in _version_changes[library]:
|
|
|
|
_version_changes[library][version] = {}
|
|
|
|
|
|
|
|
if structure in _version_changes[library][version]:
|
|
|
|
raise Exception("Structure: {} from: {} has already been added for version {}.".format(structure,
|
2022-04-09 13:08:14 +08:00
|
|
|
library,
|
|
|
|
version)
|
2022-04-08 23:07:41 +08:00
|
|
|
)
|
|
|
|
|
2023-05-18 21:15:27 +08:00
|
|
|
_version_changes[library][version][structure] = CustomField(fields, removals, repositions)
|
2022-04-08 23:07:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
def apply_version_changes():
|
|
|
|
"""Apply version changes to Structures in FFmpeg libraries.
|
|
|
|
Field data can vary from version to version, however assigning _fields_ automatically assigns memory.
|
|
|
|
_fields_ can also not be re-assigned. Use a temporary list that can be manipulated before setting the
|
|
|
|
_fields_ of the Structure."""
|
|
|
|
|
|
|
|
for library, data in _version_changes.items():
|
|
|
|
for version in data:
|
|
|
|
for structure, cf_data in _version_changes[library][version].items():
|
|
|
|
if versions[library] == version:
|
|
|
|
if cf_data.removals:
|
|
|
|
for remove_field in cf_data.removals:
|
|
|
|
for field in list(cf_data.fields):
|
|
|
|
if field[0] == remove_field:
|
|
|
|
cf_data.fields.remove(field)
|
|
|
|
|
2023-05-18 21:15:27 +08:00
|
|
|
if cf_data.repositions:
|
|
|
|
for reposition in cf_data.repositions:
|
|
|
|
data = None
|
|
|
|
insertId = None
|
|
|
|
for idx, field in enumerate(list(cf_data.fields)):
|
|
|
|
if field[0] == reposition.field:
|
|
|
|
data = field
|
|
|
|
elif field[0] == reposition.after:
|
|
|
|
insertId = idx
|
|
|
|
|
|
|
|
if data and insertId:
|
|
|
|
cf_data.fields.remove(data)
|
|
|
|
cf_data.fields.insert(insertId+1, data)
|
|
|
|
else:
|
|
|
|
print(f"Warning: {reposition} for {library} was not able to be processed.")
|
|
|
|
|
2022-04-08 23:07:41 +08:00
|
|
|
structure._fields_ = cf_data.fields
|