Home
last modified time | relevance | path

Searched refs:pix_fmt (Results 1 – 25 of 514) sorted by relevance

12345678910>>...21

/third_party/ffmpeg/libswscale/
Dswscale_internal.h646 static av_always_inline int is16BPS(enum AVPixelFormat pix_fmt) in is16BPS() argument
648 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in is16BPS()
653 static av_always_inline int is32BPS(enum AVPixelFormat pix_fmt) in is32BPS() argument
655 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in is32BPS()
660 static av_always_inline int isNBPS(enum AVPixelFormat pix_fmt) in isNBPS() argument
662 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in isNBPS()
667 static av_always_inline int isBE(enum AVPixelFormat pix_fmt) in isBE() argument
669 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in isBE()
674 static av_always_inline int isYUV(enum AVPixelFormat pix_fmt) in isYUV() argument
676 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in isYUV()
[all …]
/third_party/ffmpeg/libavcodec/
Dpnm.c85 avctx->pix_fmt = AV_PIX_FMT_GBRPF32; in ff_pnm_decode_header()
87 avctx->pix_fmt = AV_PIX_FMT_GRAYF32; in ff_pnm_decode_header()
89 avctx->pix_fmt = AV_PIX_FMT_MONOWHITE; in ff_pnm_decode_header()
92 avctx->pix_fmt = AV_PIX_FMT_YUV420P; in ff_pnm_decode_header()
94 avctx->pix_fmt = AV_PIX_FMT_GRAY8; in ff_pnm_decode_header()
96 avctx->pix_fmt = AV_PIX_FMT_RGB24; in ff_pnm_decode_header()
141 avctx->pix_fmt = AV_PIX_FMT_MONOBLACK; in ff_pnm_decode_header()
143 avctx->pix_fmt = AV_PIX_FMT_GRAY8; in ff_pnm_decode_header()
145 avctx->pix_fmt = AV_PIX_FMT_GRAY16; in ff_pnm_decode_header()
149 avctx->pix_fmt = AV_PIX_FMT_GRAY8A; in ff_pnm_decode_header()
[all …]
Davpicture.c38 enum AVPixelFormat pix_fmt, int width, int height) in avpicture_fill() argument
41 ptr, pix_fmt, width, height, 1); in avpicture_fill()
44 int avpicture_layout(const AVPicture* src, enum AVPixelFormat pix_fmt, int width, int height, in avpicture_layout() argument
49 pix_fmt, width, height, 1); in avpicture_layout()
52 int avpicture_get_size(enum AVPixelFormat pix_fmt, int width, int height) in avpicture_get_size() argument
54 return av_image_get_buffer_size(pix_fmt, width, height, 1); in avpicture_get_size()
58 enum AVPixelFormat pix_fmt, int width, int height) in avpicture_alloc() argument
61 width, height, pix_fmt, 1); in avpicture_alloc()
76 enum AVPixelFormat pix_fmt, int width, int height) in av_picture_copy() argument
79 src->linesize, pix_fmt, width, height); in av_picture_copy()
Ddv_profile.c84 .pix_fmt = AV_PIX_FMT_YUV411P,
101 .pix_fmt = AV_PIX_FMT_YUV420P,
118 .pix_fmt = AV_PIX_FMT_YUV411P,
135 .pix_fmt = AV_PIX_FMT_YUV422P,
152 .pix_fmt = AV_PIX_FMT_YUV422P,
169 .pix_fmt = AV_PIX_FMT_YUV422P,
186 .pix_fmt = AV_PIX_FMT_YUV422P,
203 .pix_fmt = AV_PIX_FMT_YUV422P,
220 .pix_fmt = AV_PIX_FMT_YUV422P,
237 .pix_fmt = AV_PIX_FMT_YUV420P,
[all …]
Dxwdenc.c36 enum AVPixelFormat pix_fmt = avctx->pix_fmt; in xwd_encode_frame() local
37 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in xwd_encode_frame()
49 switch (pix_fmt) { in xwd_encode_frame()
54 if (pix_fmt == AV_PIX_FMT_ARGB || in xwd_encode_frame()
55 pix_fmt == AV_PIX_FMT_ABGR) in xwd_encode_frame()
57 if (pix_fmt == AV_PIX_FMT_ABGR || in xwd_encode_frame()
58 pix_fmt == AV_PIX_FMT_RGBA) { in xwd_encode_frame()
74 if (pix_fmt == AV_PIX_FMT_RGB24) in xwd_encode_frame()
87 if (pix_fmt == AV_PIX_FMT_BGR565LE || in xwd_encode_frame()
88 pix_fmt == AV_PIX_FMT_BGR565BE) { in xwd_encode_frame()
[all …]
Drawdec.c79 avctx->pix_fmt = avpriv_find_pix_fmt(avpriv_pix_fmt_bps_mov, in raw_init_decoder()
82 avctx->pix_fmt = avpriv_find_pix_fmt(avpriv_pix_fmt_bps_avi, in raw_init_decoder()
85 avctx->pix_fmt = avpriv_find_pix_fmt(ff_raw_pix_fmt_tags, avctx->codec_tag); in raw_init_decoder()
86 else if (avctx->pix_fmt == AV_PIX_FMT_NONE && avctx->bits_per_coded_sample) in raw_init_decoder()
87 avctx->pix_fmt = avpriv_find_pix_fmt(avpriv_pix_fmt_bps_avi, in raw_init_decoder()
90 desc = av_pix_fmt_desc_get(avctx->pix_fmt); in raw_init_decoder()
102 avpriv_set_systematic_pal2((uint32_t*)context->palette->data, avctx->pix_fmt); in raw_init_decoder()
118 if (avctx->pix_fmt == AV_PIX_FMT_MONOWHITE || in raw_init_decoder()
119 avctx->pix_fmt == AV_PIX_FMT_MONOBLACK) in raw_init_decoder()
121 else if (avctx->pix_fmt == AV_PIX_FMT_PAL8) in raw_init_decoder()
[all …]
Ddpx.c513 avctx->pix_fmt = AV_PIX_FMT_GRAY8; in decode_frame()
517 avctx->pix_fmt = AV_PIX_FMT_GRAY12; in decode_frame()
524 avctx->pix_fmt = AV_PIX_FMT_GRAYF32LE; in decode_frame()
531 avctx->pix_fmt = AV_PIX_FMT_GRAYF32BE; in decode_frame()
535 avctx->pix_fmt = AV_PIX_FMT_RGB24; in decode_frame()
539 avctx->pix_fmt = AV_PIX_FMT_ABGR; in decode_frame()
543 avctx->pix_fmt = AV_PIX_FMT_RGBA; in decode_frame()
547 avctx->pix_fmt = AV_PIX_FMT_GBRP10; in decode_frame()
551 avctx->pix_fmt = AV_PIX_FMT_GBRAP10; in decode_frame()
555 avctx->pix_fmt = AV_PIX_FMT_GBRP12; in decode_frame()
[all …]
Dbmp.c142 avctx->pix_fmt = AV_PIX_FMT_NONE; in bmp_decode_frame()
148 avctx->pix_fmt = alpha ? AV_PIX_FMT_ABGR : AV_PIX_FMT_0BGR; in bmp_decode_frame()
150 avctx->pix_fmt = alpha ? AV_PIX_FMT_BGRA : AV_PIX_FMT_BGR0; in bmp_decode_frame()
152 avctx->pix_fmt = alpha ? AV_PIX_FMT_ARGB : AV_PIX_FMT_0RGB; in bmp_decode_frame()
154 avctx->pix_fmt = alpha ? AV_PIX_FMT_RGBA : AV_PIX_FMT_RGB0; in bmp_decode_frame()
161 avctx->pix_fmt = AV_PIX_FMT_BGRA; in bmp_decode_frame()
165 avctx->pix_fmt = AV_PIX_FMT_BGR24; in bmp_decode_frame()
169 avctx->pix_fmt = AV_PIX_FMT_RGB555; in bmp_decode_frame()
172 avctx->pix_fmt = AV_PIX_FMT_RGB565; in bmp_decode_frame()
174 avctx->pix_fmt = AV_PIX_FMT_RGB555; in bmp_decode_frame()
[all …]
Dxwddec.c158 avctx->pix_fmt = AV_PIX_FMT_NONE; in xwd_decode_frame()
165 avctx->pix_fmt = AV_PIX_FMT_MONOWHITE; in xwd_decode_frame()
167 avctx->pix_fmt = AV_PIX_FMT_GRAY8; in xwd_decode_frame()
173 avctx->pix_fmt = AV_PIX_FMT_PAL8; in xwd_decode_frame()
181 avctx->pix_fmt = be ? AV_PIX_FMT_RGB555BE : AV_PIX_FMT_RGB555LE; in xwd_decode_frame()
183 avctx->pix_fmt = be ? AV_PIX_FMT_BGR555BE : AV_PIX_FMT_BGR555LE; in xwd_decode_frame()
186 avctx->pix_fmt = be ? AV_PIX_FMT_RGB565BE : AV_PIX_FMT_RGB565LE; in xwd_decode_frame()
188 avctx->pix_fmt = be ? AV_PIX_FMT_BGR565BE : AV_PIX_FMT_BGR565LE; in xwd_decode_frame()
191 avctx->pix_fmt = be ? AV_PIX_FMT_RGB24 : AV_PIX_FMT_BGR24; in xwd_decode_frame()
193 avctx->pix_fmt = be ? AV_PIX_FMT_BGR24 : AV_PIX_FMT_RGB24; in xwd_decode_frame()
[all …]
Dffv1dec.c248 const int ps = av_pix_fmt_desc_get(c->pix_fmt)->comp[0].step; in decode_slice()
596 f->avctx->pix_fmt = AV_PIX_FMT_GRAY8; in read_header()
599 f->avctx->pix_fmt = AV_PIX_FMT_GRAY9; in read_header()
602 f->avctx->pix_fmt = AV_PIX_FMT_GRAY10; in read_header()
605 f->avctx->pix_fmt = AV_PIX_FMT_GRAY12; in read_header()
608 f->avctx->pix_fmt = AV_PIX_FMT_GRAY16; in read_header()
610 f->avctx->pix_fmt = AV_PIX_FMT_GRAY16; in read_header()
615 f->avctx->pix_fmt = AV_PIX_FMT_YA8; in read_header()
620 case 0x00: f->avctx->pix_fmt = AV_PIX_FMT_YUV444P; break; in read_header()
621 case 0x01: f->avctx->pix_fmt = AV_PIX_FMT_YUV440P; break; in read_header()
[all …]
Ddds.c169 avctx->pix_fmt = AV_PIX_FMT_RGBA; in parse_pixel_format()
230 avctx->pix_fmt = AV_PIX_FMT_UYVY422; in parse_pixel_format()
234 avctx->pix_fmt = AV_PIX_FMT_YUYV422; in parse_pixel_format()
240 avctx->pix_fmt = AV_PIX_FMT_PAL8; in parse_pixel_format()
244 avctx->pix_fmt = AV_PIX_FMT_MONOBLACK; in parse_pixel_format()
270 avctx->pix_fmt = AV_PIX_FMT_BGRA64; in parse_pixel_format()
279 avctx->pix_fmt = AV_PIX_FMT_BGRA; in parse_pixel_format()
285 avctx->pix_fmt = AV_PIX_FMT_RGBA; in parse_pixel_format()
291 avctx->pix_fmt = AV_PIX_FMT_RGBA; // opaque in parse_pixel_format()
294 avctx->pix_fmt = AV_PIX_FMT_RGB565LE; in parse_pixel_format()
[all …]
/third_party/ffmpeg/libavformat/
Dyuv4mpegdec.c41 enum AVPixelFormat pix_fmt = AV_PIX_FMT_NONE, alt_pix_fmt = AV_PIX_FMT_NONE; in yuv4_read_header() local
81 pix_fmt = AV_PIX_FMT_YUV420P; in yuv4_read_header()
84 pix_fmt = AV_PIX_FMT_YUV420P; in yuv4_read_header()
87 pix_fmt = AV_PIX_FMT_YUV420P; in yuv4_read_header()
90 pix_fmt = AV_PIX_FMT_YUV420P16; in yuv4_read_header()
92 pix_fmt = AV_PIX_FMT_YUV422P16; in yuv4_read_header()
94 pix_fmt = AV_PIX_FMT_YUV444P16; in yuv4_read_header()
96 pix_fmt = AV_PIX_FMT_YUV420P14; in yuv4_read_header()
98 pix_fmt = AV_PIX_FMT_YUV422P14; in yuv4_read_header()
100 pix_fmt = AV_PIX_FMT_YUV444P14; in yuv4_read_header()
[all …]
/third_party/ffmpeg/tests/fate/
Dlavf-image.mak41 fate-lavf-jpg: CMD = lavf_image "-pix_fmt yuvj420p"
42 fate-lavf-tiff: CMD = lavf_image "-pix_fmt rgb24"
43 fate-lavf-gbrp10le.dpx: CMD = lavf_image "-pix_fmt gbrp10le" "-pix_fmt gbrp10le"
44 fate-lavf-gbrp12le.dpx: CMD = lavf_image "-pix_fmt gbrp12le" "-pix_fmt gbrp12le"
45 fate-lavf-rgb48le.dpx: CMD = lavf_image "-pix_fmt rgb48le"
46 fate-lavf-rgb48le_10.dpx: CMD = lavf_image "-pix_fmt rgb48le -bits_per_raw_sample 10" "-pix_fmt rgb…
47 fate-lavf-rgba64le.dpx: CMD = lavf_image "-pix_fmt rgba64le"
48 fate-lavf-rgba.pam: CMD = lavf_image "-pix_fmt rgba"
49 fate-lavf-gray.pam: CMD = lavf_image "-pix_fmt gray"
50 fate-lavf-gray16be.pam: CMD = lavf_image "-pix_fmt gray16be" "-pix_fmt gray16be"
[all …]
Dimage.mak2 fate-aliaspix-bgr: CMD = framecrc -i $(TARGET_SAMPLES)/aliaspix/first.pix -pix_fmt bgr24
5 fate-aliaspix-gray: CMD = framecrc -i $(TARGET_SAMPLES)/aliaspix/firstgray.pix -pix_fmt gray
18 …D = framecrc -c:v brender_pix -i $(TARGET_SAMPLES)/brenderpix/rivrock1.pix -pix_fmt rgb24 -vf scale
21 …MD = framecrc -c:v brender_pix -i $(TARGET_SAMPLES)/brenderpix/testtex.pix -pix_fmt rgb24 -vf scale
31 fate-bmpparser: CMD = framecrc -f image2pipe -i $(TARGET_SAMPLES)/bmp/numbers.bmp -pix_fmt rgb24 -v…
38 DDS_OPTS_pal = -sws_flags +accurate_rnd+bitexact -pix_fmt rgba
39 DDS_OPTS_pal-ati = -sws_flags +accurate_rnd+bitexact -pix_fmt rgba
104 fate-exr-slice-raw: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgba_slice_raw.exr -pix_fmt gbrapf32le
107 fate-exr-slice-rle: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgba_slice_rle.exr -pix_fmt gbrapf32le
110 fate-exr-slice-zip1: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgba_slice_zip1.exr -pix_fmt gbrapf32le
[all …]
Ddfa.mak2 fate-dfa1: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0000.dfa -pix_fmt rgb24 -vf scale
5 fate-dfa2: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0001.dfa -pix_fmt rgb24 -vf scale
8 fate-dfa3: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0002.dfa -pix_fmt rgb24 -vf scale
11 fate-dfa4: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0003.dfa -pix_fmt rgb24 -vf scale
14 fate-dfa5: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0004.dfa -pix_fmt rgb24 -vf scale
17 fate-dfa6: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0005.dfa -pix_fmt rgb24 -vf scale
20 fate-dfa7: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0006.dfa -pix_fmt rgb24 -vf scale
23 fate-dfa8: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0007.dfa -pix_fmt rgb24 -vf scale
26 fate-dfa9: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0008.dfa -pix_fmt rgb24 -vf scale
29 fate-dfa10: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0009.dfa -pix_fmt rgb24 -vf scale
[all …]
Dbmp.mak2 fate-bmp-1bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test1.bmp -pix_fmt rgb24 -vf scale
5 fate-bmp-4bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test4.bmp -pix_fmt rgb24 -vf scale
8 fate-bmp-4bit-os2: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test4os2v2.bmp -pix_fmt rgb24 -vf scale
11 fate-bmp-8bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test8.bmp -pix_fmt rgb24 -vf scale
14 fate-bmp-8bit-os2: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test8os2.bmp -pix_fmt rgb24 -vf scale
17 fate-bmp-15bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16.bmp -pix_fmt rgb555le -vf scale
20 fate-bmp-15bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16bf555.bmp -pix_fmt rgb555le -vf …
23 fate-bmp-16bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16bf565.bmp -pix_fmt rgb565le -vf …
29 fate-bmp-32bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test32.bmp -pix_fmt bgr24 -vf scale
32 fate-bmp-32bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test32bf.bmp -pix_fmt bgr24 -vf scale
[all …]
Dvcodec.mak7 …_dec "rawvideo -s 352x288 -pix_fmt yuv420p $(RAWDECOPTS)" $(SRC) $(FMT) "-c $(CODEC) $(ENCOPTS)" r…
8 …-s $(FATEW)x$(FATEH) -pix_fmt yuv420p $(RAWDECOPTS)" $(SRC) $(FMT) "-c $(CODEC) $(ENCOPTS)" rawvid…
46 fate-vsynth1-vc2-4%: ENCOPTS = -pix_fmt yuv$(@:fate-vsynth1-vc2-%=%) \
49 fate-vsynth2-vc2-4%: ENCOPTS = -pix_fmt yuv$(@:fate-vsynth2-vc2-%=%) \
52 fate-vsynth_lena-vc2-4%: ENCOPTS = -pix_fmt yuv$(@:fate-vsynth_lena-vc2-%=%) \
56 fate-vsynth1-vc2-t%: ENCOPTS = -pix_fmt yuv422p10 -c:v vc2 -frames 5 -strict -1 -wavele…
58 fate-vsynth2-vc2-t%: ENCOPTS = -pix_fmt yuv422p10 -c:v vc2 -frames 5 -strict -1 -wavele…
60 fate-vsynth_lena-vc2-t%: ENCOPTS = -pix_fmt yuv422p10 -c:v vc2 -frames 5 -strict -1 -wavele…
63 -pix_fmt yuv422p -frames 5 -qmax 8
67 -pix_fmt yuv422p -frames 5 -qmax 8
[all …]
Dlavf-video.mak18 fate-lavf-apng: CMD = lavf_video "-pix_fmt rgb24"
19 fate-lavf-apng.png: CMD = lavf_video "-pix_fmt rgb24" "-frames:v 1 -f apng"
20 fate-lavf-gray.fits: CMD = lavf_video "-pix_fmt gray"
21 fate-lavf-gray16be.fits: CMD = lavf_video "-pix_fmt gray16be"
22 fate-lavf-gbrp.fits: CMD = lavf_video "-pix_fmt gbrp"
23 fate-lavf-gbrap.fits: CMD = lavf_video "-pix_fmt gbrap"
24 fate-lavf-gbrp16be.fits: CMD = lavf_video "-pix_fmt gbrp16be"
25 fate-lavf-gbrap16be.fits: CMD = lavf_video "-pix_fmt gbrap16be"
26 fate-lavf-gif: CMD = lavf_video "-pix_fmt rgb24"
Dutvideo.mak73 fate-utvideoenc_rgba_left: OPTS = -pix_fmt gbrap -pred left
76 fate-utvideoenc_rgba_median: OPTS = -pix_fmt gbrap -pred median
79 fate-utvideoenc_rgba_none: OPTS = -pix_fmt gbrap -pred none
82 fate-utvideoenc_rgb_left: OPTS = -pix_fmt gbrp -pred left
85 fate-utvideoenc_rgb_median: OPTS = -pix_fmt gbrp -pred median
88 fate-utvideoenc_rgb_none: OPTS = -pix_fmt gbrp -pred none
91 fate-utvideoenc_yuv420_left: OPTS = -pix_fmt yuv420p -pred left
94 fate-utvideoenc_yuv420_median: OPTS = -pix_fmt yuv420p -pred median
97 fate-utvideoenc_yuv420_none: OPTS = -pix_fmt yuv420p -pred none
100 fate-utvideoenc_yuv422_left: OPTS = -pix_fmt yuv422p -pred left
[all …]
Ddnxhd.mak14 … +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/dnxhd100_cid1260.mov -pix_fmt yuv422p10le -vf s…
15 … +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/dnxhr444_cid1270.mov -pix_fmt yuv444p10le -vf s…
16 …itexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/dnxhr_cid1271_12bit.mov -pix_fmt yuv422p12le -vf s…
17 …mecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/dnxhr_cid1274.dnxhr -pix_fmt yuv422p
18 …crc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/prefix-256x1536.dnxhr -pix_fmt yuv422p
19 …crc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/prefix-256x1716.dnxhr -pix_fmt yuv422p
20 …crc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/prefix-256x2048.dnxhr -pix_fmt yuv422p
21 …crc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/prefix-256x2160.dnxhr -pix_fmt yuv422p
22 …crc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/prefix-256x3212.dnxhr -pix_fmt yuv422p
Dvideo.mak2 fate-4xm-1: CMD = framecrc -i $(TARGET_SAMPLES)/4xm/version1.4xm -pix_fmt rgb24 -an -vf scale
5 fate-4xm-2: CMD = framecrc -i $(TARGET_SAMPLES)/4xm/version2.4xm -pix_fmt rgb24 -an -vf scale
11 fate-012v: CMD = framecrc -i $(TARGET_SAMPLES)/012v/sample.avi -pix_fmt yuv422p16le -vf scale
14 fate-aasc: CMD = framecrc -i $(TARGET_SAMPLES)/aasc/AASC-1.5MB.AVI -pix_fmt rgb24 -vf scale
23 fate-alg-mm: CMD = framecrc -i $(TARGET_SAMPLES)/alg-mm/ibmlogo.mm -an -pix_fmt rgb24 -vf scale
29 fate-ansi: CMD = framecrc -chars_per_frame 44100 -i $(TARGET_SAMPLES)/ansi/TRE-IOM5.ANS -pix_fmt rg…
32 fate-ansi256: CMD = framecrc -chars_per_frame 44100 -i $(TARGET_SAMPLES)/ansi/ansi256.ans -pix_fmt
35 fate-armovie-escape124: CMD = framecrc -i $(TARGET_SAMPLES)/rpl/ESCAPE.RPL -pix_fmt rgb24 -vf scale…
53 fate-bethsoft-vid: CMD = framecrc -i $(TARGET_SAMPLES)/bethsoft-vid/ANIM0001.VID -t 5 -pix_fmt rgb2…
56 fate-bfi: CMD = framecrc -i $(TARGET_SAMPLES)/bfi/2287.bfi -pix_fmt rgb24 -vf scale -af aresample
[all …]
/third_party/ffmpeg/libavutil/
Dimgutils.h59 int av_image_get_linesize(enum AVPixelFormat pix_fmt, int width, int plane);
68 int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width);
81 int av_image_fill_plane_sizes(size_t size[4], enum AVPixelFormat pix_fmt,
95 int av_image_fill_pointers(uint8_t *data[4], enum AVPixelFormat pix_fmt, int height,
109 int w, int h, enum AVPixelFormat pix_fmt, int align);
135 enum AVPixelFormat pix_fmt, int width, int height);
153 enum AVPixelFormat pix_fmt, int width, int height);
183 enum AVPixelFormat pix_fmt, int width, int height, int align);
195 int av_image_get_buffer_size(enum AVPixelFormat pix_fmt, int width, int height, int align);
216 enum AVPixelFormat pix_fmt, int width, int height, int align);
[all …]
Dimgutils.c76 int av_image_get_linesize(enum AVPixelFormat pix_fmt, int width, int plane) in av_image_get_linesize() argument
78 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in av_image_get_linesize()
89 int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width) in av_image_fill_linesizes() argument
92 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in av_image_fill_linesizes()
111 int av_image_fill_plane_sizes(size_t sizes[4], enum AVPixelFormat pix_fmt, in av_image_fill_plane_sizes() argument
116 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in av_image_fill_plane_sizes()
146 int av_image_fill_pointers(uint8_t *data[4], enum AVPixelFormat pix_fmt, int height, in av_image_fill_pointers() argument
158 ret = av_image_fill_plane_sizes(sizes, pix_fmt, height, linesizes1); in av_image_fill_pointers()
176 int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt) in avpriv_set_systematic_pal2() argument
183 switch (pix_fmt) { in avpriv_set_systematic_pal2()
[all …]
/third_party/ffmpeg/tools/
Dfourcc2pixfmt.c50 static void print_pix_fmt_fourccs(enum AVPixelFormat pix_fmt, const PixelFormatTag *pix_fmt_tags, c… in print_pix_fmt_fourccs() argument
54 for (i = 0; pix_fmt_tags[i].pix_fmt != AV_PIX_FMT_NONE; i++) in print_pix_fmt_fourccs()
55 if (pix_fmt_tags[i].pix_fmt == pix_fmt) in print_pix_fmt_fourccs()
92 for (i = 0; pix_fmt_tags[i].pix_fmt != AV_PIX_FMT_NONE; i++) in main()
94 av_get_pix_fmt_name(pix_fmt_tags[i].pix_fmt)); in main()
108 enum AVPixelFormat pix_fmt = av_get_pix_fmt(pix_fmt_name); in main() local
109 if (pix_fmt == AV_PIX_FMT_NONE) { in main()
113 print_pix_fmt_fourccs(pix_fmt, pix_fmt_tags, '\n'); in main()
/third_party/ffmpeg/libswscale/tests/
Dpixdesc_query.c28 int (*cond)(enum AVPixelFormat pix_fmt);
67 enum AVPixelFormat pix_fmt = av_pix_fmt_desc_get_id(pix_desc); in main() local
68 if (query_tab[i].cond(pix_fmt)) { in main()
70 if (pix_fmt == AV_PIX_FMT_RGB32) pix_name = "rgb32"; in main()
71 else if (pix_fmt == AV_PIX_FMT_RGB32_1) pix_name = "rgb32_1"; in main()
72 else if (pix_fmt == AV_PIX_FMT_BGR32) pix_name = "bgr32"; in main()
73 else if (pix_fmt == AV_PIX_FMT_BGR32_1) pix_name = "bgr32_1"; in main()

12345678910>>...21