diff options
author | Jun Zhao <jun.zhao@intel.com> | 2018-10-28 15:10:47 +0800 |
---|---|---|
committer | Jun Zhao <jun.zhao@intel.com> | 2018-10-28 15:10:47 +0800 |
commit | 6885fa74999652ec4cc2aa4832f638bec5294359 (patch) | |
tree | 78e9019b40690fd6e19aaaf7ef4960b85e70cb89 | |
parent | c00ed8d0e7bd5917dc096245e6a37ae0149d8b54 (diff) | |
download | ffmpeg-6885fa74999652ec4cc2aa4832f638bec5294359.tar.gz |
lavc/libdavs2: Remove yuv420p10le from fromat list.
now libdavs2 can't support 10bits mode, so remove the
yuv420p10le from fromat list.
Signed-off-by: Jun Zhao <jun.zhao@intel.com>
-rw-r--r-- | libavcodec/libdavs2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c index aa1478290a..cadf995444 100644 --- a/libavcodec/libdavs2.c +++ b/libavcodec/libdavs2.c @@ -165,7 +165,7 @@ AVCodec ff_libdavs2_decoder = { .close = davs2_end, .decode = davs2_decode_frame, .capabilities = AV_CODEC_CAP_DELAY,//AV_CODEC_CAP_DR1 | - .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV420P10, + .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE }, .wrapper_name = "libdavs2", }; |