avformat/isom: add support for RAW ASC Bayer BGGR in mov

This commit is contained in:
Paul B Mahol 2020-10-08 19:24:11 +02:00
parent 7800cc6e82
commit af5ad79fe1
2 changed files with 3 additions and 0 deletions

View File

@ -246,6 +246,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
{ AV_PIX_FMT_GRAY16BE,MKTAG('b', '1', '6', 'g') },
{ AV_PIX_FMT_RGB48BE, MKTAG('b', '4', '8', 'r') },
{ AV_PIX_FMT_RGBA64BE,MKTAG('b', '6', '4', 'a') },
{ AV_PIX_FMT_BAYER_RGGB16BE, MKTAG('B', 'G', 'G', 'R') },
/* vlc */
{ AV_PIX_FMT_YUV410P, MKTAG('I', '4', '1', '0') },

View File

@ -316,6 +316,8 @@ const AVCodecTag ff_codec_movvideo_tags[] = {
{ AV_CODEC_ID_NOTCHLC, MKTAG('n', 'c', 'l', 'c') },
{ AV_CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'G', 'R') }, /* ASC Bayer BGGR */
{ AV_CODEC_ID_NONE, 0 },
};