Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove references to Libav #1235

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions av/audio/layout.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ cdef AudioLayout get_audio_layout(int channels, uint64_t c_layout):
return layout


# These are the defaults given by FFmpeg; Libav is different.
# TODO: What about av_get_default_channel_layout(...)?
cdef uint64_t default_layouts[17]
default_layouts[0] = 0
Expand All @@ -31,10 +30,9 @@ default_layouts[12] = 0x0FFF
default_layouts[13] = 0x1FFF
default_layouts[14] = 0x3FFF
default_layouts[15] = 0x7FFF
default_layouts[16] = 0xFFFF # FFmpeg has one here.
default_layouts[16] = 0xFFFF


# These are the descriptions as given by FFmpeg; Libav does not have them.
cdef dict channel_descriptions = {
'FL': 'front left',
'FR': 'front right',
Expand Down
Loading