mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/isom: add support for RAW ASC Bayer BGGR in mov
This commit is contained in:
parent
7800cc6e82
commit
af5ad79fe1
|
@ -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') },
|
||||
|
|
|
@ -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 },
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue