mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 13:10:37 +00:00
Merge commit '9cfa21c8c2b81146aab574f55c93f27e5c2d435c'
* commit '9cfa21c8c2b81146aab574f55c93f27e5c2d435c': swscale: support endianness conversion for AV_PIX_FMT_XYZ12 Conflicts: libswscale/swscale_unscaled.c libswscale/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
dce12f6948
@ -198,8 +198,8 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = {
|
||||
[AV_PIX_FMT_GBRP14BE] = { 1, 1 },
|
||||
[AV_PIX_FMT_GBRP16LE] = { 1, 0 },
|
||||
[AV_PIX_FMT_GBRP16BE] = { 1, 0 },
|
||||
[AV_PIX_FMT_XYZ12BE] = { 1, 0 },
|
||||
[AV_PIX_FMT_XYZ12LE] = { 1, 0 },
|
||||
[AV_PIX_FMT_XYZ12BE] = { 1, 0, 1 },
|
||||
[AV_PIX_FMT_XYZ12LE] = { 1, 0, 1 },
|
||||
[AV_PIX_FMT_GBRAP] = { 0, 0 },
|
||||
[AV_PIX_FMT_GBRAP16LE] = { 0, 0 },
|
||||
[AV_PIX_FMT_GBRAP16BE] = { 0, 0 },
|
||||
|
Loading…
Reference in New Issue
Block a user