Skip to content

Commit

Permalink
Remove references to Libav
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed Nov 28, 2023
1 parent bdacaac commit 1de6a50
Showing 1 changed file with 1 addition and 3 deletions.
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

0 comments on commit 1de6a50

Please sign in to comment.