Home
last modified time | relevance | path

Searched refs:pix_fmt (Results 1 - 25 of 493) sorted by relevance

12345678910>>...20

/third_party/ffmpeg/libswscale/
H A Dswscale_internal.h694 static av_always_inline int is16BPS(enum AVPixelFormat pix_fmt) in is16BPS() argument
696 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in is16BPS()
701 static av_always_inline int is32BPS(enum AVPixelFormat pix_fmt) in is32BPS() argument
703 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in is32BPS()
708 static av_always_inline int isNBPS(enum AVPixelFormat pix_fmt) in isNBPS() argument
710 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in isNBPS()
715 static av_always_inline int isBE(enum AVPixelFormat pix_fmt) in isBE() argument
717 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in isBE()
722 static av_always_inline int isYUV(enum AVPixelFormat pix_fmt) in isYUV() argument
724 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); in isYUV()
729 isPlanarYUV(enum AVPixelFormat pix_fmt) isPlanarYUV() argument
740 isSemiPlanarYUV(enum AVPixelFormat pix_fmt) isSemiPlanarYUV() argument
747 isRGB(enum AVPixelFormat pix_fmt) isRGB() argument
754 isGray(enum AVPixelFormat pix_fmt) isGray() argument
765 isRGBinInt(enum AVPixelFormat pix_fmt) isRGBinInt() argument
787 isBGRinInt(enum AVPixelFormat pix_fmt) isBGRinInt() argument
809 isBayer(enum AVPixelFormat pix_fmt) isBayer() argument
816 isBayer16BPS(enum AVPixelFormat pix_fmt) isBayer16BPS() argument
823 isAnyRGB(enum AVPixelFormat pix_fmt) isAnyRGB() argument
831 isFloat(enum AVPixelFormat pix_fmt) isFloat() argument
838 isALPHA(enum AVPixelFormat pix_fmt) isALPHA() argument
847 isPacked(enum AVPixelFormat pix_fmt) isPacked() argument
856 isPlanar(enum AVPixelFormat pix_fmt) isPlanar() argument
863 isPackedRGB(enum AVPixelFormat pix_fmt) isPackedRGB() argument
870 isPlanarRGB(enum AVPixelFormat pix_fmt) isPlanarRGB() argument
878 usePal(enum AVPixelFormat pix_fmt) usePal() argument
896 isDataInHighBits(enum AVPixelFormat pix_fmt) isDataInHighBits() argument
915 isSwappedChroma(enum AVPixelFormat pix_fmt) isSwappedChroma() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dpnm.c88 avctx->pix_fmt = AV_PIX_FMT_GBRPF32; in ff_pnm_decode_header()
90 avctx->pix_fmt = AV_PIX_FMT_GRAYF32; in ff_pnm_decode_header()
92 avctx->pix_fmt = AV_PIX_FMT_GBRPF32; in ff_pnm_decode_header()
95 avctx->pix_fmt = AV_PIX_FMT_GRAYF32; in ff_pnm_decode_header()
98 avctx->pix_fmt = AV_PIX_FMT_MONOWHITE; in ff_pnm_decode_header()
101 avctx->pix_fmt = AV_PIX_FMT_YUV420P; in ff_pnm_decode_header()
103 avctx->pix_fmt = AV_PIX_FMT_GRAY8; in ff_pnm_decode_header()
105 avctx->pix_fmt = AV_PIX_FMT_RGB24; in ff_pnm_decode_header()
150 avctx->pix_fmt = AV_PIX_FMT_MONOBLACK; in ff_pnm_decode_header()
152 avctx->pix_fmt in ff_pnm_decode_header()
[all...]
H A Davpicture.c38 enum AVPixelFormat pix_fmt, int width, int height) in avpicture_fill()
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()
61 width, height, pix_fmt, 1); in avpicture_alloc()
76 enum AVPixelFormat pix_fmt, int width, int height) in av_picture_copy()
79 src->linesize, pix_fmt, widt in av_picture_copy()
37 avpicture_fill(AVPicture *picture, const uint8_t *ptr, enum AVPixelFormat pix_fmt, int width, int height) avpicture_fill() argument
57 avpicture_alloc(AVPicture *picture, enum AVPixelFormat pix_fmt, int width, int height) avpicture_alloc() argument
75 av_picture_copy(AVPicture *dst, const AVPicture *src, enum AVPixelFormat pix_fmt, int width, int height) av_picture_copy() argument
[all...]
H A Dpnmenc.c44 int size = av_image_get_buffer_size(avctx->pix_fmt, in pnm_encode_frame()
56 switch (avctx->pix_fmt) { in pnm_encode_frame()
117 if (avctx->pix_fmt == AV_PIX_FMT_GBRPF32LE || in pnm_encode_frame()
118 avctx->pix_fmt == AV_PIX_FMT_GRAYF32LE || in pnm_encode_frame()
119 avctx->pix_fmt == AV_PIX_FMT_GBRPF32BE || in pnm_encode_frame()
120 avctx->pix_fmt == AV_PIX_FMT_GRAYF32BE) in pnm_encode_frame()
122 "%f\n", (avctx->pix_fmt == AV_PIX_FMT_GBRPF32BE || in pnm_encode_frame()
123 avctx->pix_fmt == AV_PIX_FMT_GRAYF32BE) ? 1.f: -1.f); in pnm_encode_frame()
125 if (avctx->pix_fmt != AV_PIX_FMT_MONOWHITE && in pnm_encode_frame()
126 avctx->pix_fmt ! in pnm_encode_frame()
[all...]
H A Ddv_profile.c85 .pix_fmt = AV_PIX_FMT_YUV411P,
102 .pix_fmt = AV_PIX_FMT_YUV420P,
119 .pix_fmt = AV_PIX_FMT_YUV411P,
136 .pix_fmt = AV_PIX_FMT_YUV422P,
153 .pix_fmt = AV_PIX_FMT_YUV422P,
170 .pix_fmt = AV_PIX_FMT_YUV422P,
187 .pix_fmt = AV_PIX_FMT_YUV422P,
204 .pix_fmt = AV_PIX_FMT_YUV422P,
221 .pix_fmt = AV_PIX_FMT_YUV422P,
238 .pix_fmt
305 av_dv_codec_profile(int width, int height, enum AVPixelFormat pix_fmt) av_dv_codec_profile() argument
315 av_dv_codec_profile2(int width, int height, enum AVPixelFormat pix_fmt, AVRational frame_rate) av_dv_codec_profile2() argument
[all...]
H A 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 in xwd_encode_frame()
[all...]
H A Drawdec.c80 avctx->pix_fmt = avpriv_pix_fmt_find(PIX_FMT_LIST_MOV, in raw_init_decoder()
83 avctx->pix_fmt = avpriv_pix_fmt_find(PIX_FMT_LIST_AVI, in raw_init_decoder()
86 avctx->pix_fmt = avpriv_pix_fmt_find(PIX_FMT_LIST_RAW, avctx->codec_tag); in raw_init_decoder()
87 else if (avctx->pix_fmt == AV_PIX_FMT_NONE && avctx->bits_per_coded_sample) in raw_init_decoder()
88 avctx->pix_fmt = avpriv_pix_fmt_find(PIX_FMT_LIST_AVI, in raw_init_decoder()
91 desc = av_pix_fmt_desc_get(avctx->pix_fmt); in raw_init_decoder()
113 if (avctx->pix_fmt == AV_PIX_FMT_MONOWHITE || in raw_init_decoder()
114 avctx->pix_fmt == AV_PIX_FMT_MONOBLACK) in raw_init_decoder()
116 else if (avctx->pix_fmt == AV_PIX_FMT_PAL8) in raw_init_decoder()
126 avctx->pix_fmt in raw_init_decoder()
[all...]
H A Ddpx.c511 avctx->pix_fmt = AV_PIX_FMT_GRAY8; in decode_frame()
515 avctx->pix_fmt = AV_PIX_FMT_GRAY12; in decode_frame()
522 avctx->pix_fmt = AV_PIX_FMT_GRAYF32LE; in decode_frame()
529 avctx->pix_fmt = AV_PIX_FMT_GRAYF32BE; in decode_frame()
533 avctx->pix_fmt = AV_PIX_FMT_RGB24; in decode_frame()
537 avctx->pix_fmt = AV_PIX_FMT_ABGR; in decode_frame()
541 avctx->pix_fmt = AV_PIX_FMT_RGBA; in decode_frame()
545 avctx->pix_fmt = AV_PIX_FMT_GBRP10; in decode_frame()
549 avctx->pix_fmt = AV_PIX_FMT_GBRAP10; in decode_frame()
553 avctx->pix_fmt in decode_frame()
[all...]
H A Ddds.c165 avctx->pix_fmt = AV_PIX_FMT_RGBA; in parse_pixel_format()
227 avctx->pix_fmt = AV_PIX_FMT_UYVY422; in parse_pixel_format()
231 avctx->pix_fmt = AV_PIX_FMT_YUYV422; in parse_pixel_format()
237 avctx->pix_fmt = AV_PIX_FMT_PAL8; in parse_pixel_format()
241 avctx->pix_fmt = AV_PIX_FMT_MONOBLACK; in parse_pixel_format()
267 avctx->pix_fmt = AV_PIX_FMT_BGRA64; in parse_pixel_format()
276 avctx->pix_fmt = AV_PIX_FMT_BGRA; in parse_pixel_format()
282 avctx->pix_fmt = AV_PIX_FMT_RGBA; in parse_pixel_format()
288 avctx->pix_fmt = AV_PIX_FMT_RGBA; // opaque in parse_pixel_format()
291 avctx->pix_fmt in parse_pixel_format()
[all...]
H A 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 in xwd_decode_frame()
[all...]
/third_party/ffmpeg/tests/fate/
H A Dlavf-image.mak62 fate-lavf-none.grayf32le.exr: CMD = lavf_image "-compression none -pix_fmt grayf32le" "" "no_file_checksums"
63 fate-lavf-rle.grayf32le.exr: CMD = lavf_image "-compression rle -pix_fmt grayf32le" "" "no_file_checksums"
64 fate-lavf-zip1.grayf32le.exr: CMD = lavf_image "-compression zip1 -pix_fmt grayf32le" "" "no_file_checksums"
65 fate-lavf-zip16.grayf32le.exr: CMD = lavf_image "-compression zip16 -pix_fmt grayf32le" "" "no_file_checksums"
66 fate-lavf-none.gbrpf32le.exr: CMD = lavf_image "-compression none -pix_fmt gbrpf32le" "" "no_file_checksums"
67 fate-lavf-rle.gbrpf32le.exr: CMD = lavf_image "-compression rle -pix_fmt gbrpf32le" "" "no_file_checksums"
68 fate-lavf-zip1.gbrpf32le.exr: CMD = lavf_image "-compression zip1 -pix_fmt gbrpf32le" "" "no_file_checksums"
69 fate-lavf-zip16.gbrpf32le.exr: CMD = lavf_image "-compression zip16 -pix_fmt gbrpf32le" "" "no_file_checksums"
70 fate-lavf-none.gbrapf32le.exr: CMD = lavf_image "-compression none -pix_fmt gbrapf32le" "" "no_file_checksums"
71 fate-lavf-rle.gbrapf32le.exr: CMD = lavf_image "-compression rle -pix_fmt gbrapf32l
[all...]
H A Dimage.mak4 fate-aliaspix-bgr: CMD = transcode alias_pix $(TARGET_SAMPLES)/aliaspix/first.pix image2 "-c alias_pix" "-map 0 -map 0 -pix_fmt:0 bgr24 -c:v:1 copy"
7 fate-aliaspix-gray: CMD = transcode alias_pix $(TARGET_SAMPLES)/aliaspix/firstgray.pix image2 "-c alias_pix" "-map 0 -map 0 -pix_fmt:0 gray -c:v:1 copy"
20 fate-brenderpix-defpal: CMD = framecrc -c:v brender_pix -i $(TARGET_SAMPLES)/brenderpix/rivrock1.pix -pix_fmt rgb24 -vf scale
23 fate-brenderpix-intpal: CMD = framecrc -c:v brender_pix -i $(TARGET_SAMPLES)/brenderpix/testtex.pix -pix_fmt rgb24 -vf scale
33 fate-bmpparser: CMD = framecrc -f image2pipe -i $(TARGET_SAMPLES)/bmp/numbers.bmp -pix_fmt rgb24 -vf scale
40 DDS_OPTS_pal := -sws_flags +accurate_rnd+bitexact -pix_fmt rgba -vf scale
41 DDS_OPTS_pal-ati:= -sws_flags +accurate_rnd+bitexact -pix_fmt rgba -vf scale
107 fate-exr-slice-raw: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgba_slice_raw.exr -pix_fmt gbrapf32le
110 fate-exr-slice-rle: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgba_slice_rle.exr -pix_fmt gbrapf32le
113 fate-exr-slice-zip1: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgba_slice_zip1.exr -pix_fmt gbrapf32l
[all...]
H A 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 scale
23 fate-bmp-16bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16bf565.bmp -pix_fmt rgb565le -vf scale
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 bgr2
[all...]
H A Dvcodec.mak9 fate-vsynth%: CMD = enc_dec "rawvideo $(DEFAULT_SIZE) -pix_fmt yuv420p $(RAWDECOPTS)" $(SRC) $(FMT) "-c $(CODEC) $(ENCOPTS)" rawvideo "-pix_fmt yuv420p -vsync passthrough $(DECOPTS)" "" "" ${TWOPASS}
34 fate-vsynth1-vc2-4%: ENCOPTS = -pix_fmt yuv$(@:fate-vsynth1-vc2-%=%) \
37 fate-vsynth2-vc2-4%: ENCOPTS = -pix_fmt yuv$(@:fate-vsynth2-vc2-%=%) \
40 fate-vsynth_lena-vc2-4%: ENCOPTS = -pix_fmt yuv$(@:fate-vsynth_lena-vc2-%=%) \
44 fate-vsynth1-vc2-t%: ENCOPTS = -pix_fmt yuv422p10 -c:v vc2 -frames 5 -strict -1 -wavelet_type $(@:fate-vsynth1-vc2-t%=%)
46 fate-vsynth2-vc2-t%: ENCOPTS = -pix_fmt yuv422p10 -c:v vc2 -frames 5 -strict -1 -wavelet_type $(@:fate-vsynth2-vc2-t%=%)
48 fate-vsynth_lena-vc2-t%: ENCOPTS = -pix_fmt yuv422p10 -c:v vc2 -frames 5 -strict -1 -wavelet_type $(@:fate-vsynth_lena-vc2-t%=%)
64 -pix_fmt yuv422p -frames 5 -qmax 8
67 -pix_fmt yuv422
[all...]
H A Dutvideo.mak74 fate-utvideoenc_rgba_left: OPTS = -pix_fmt gbrap -pred left
77 fate-utvideoenc_rgba_median: OPTS = -pix_fmt gbrap -pred median
80 fate-utvideoenc_rgba_none: OPTS = -pix_fmt gbrap -pred none
83 fate-utvideoenc_rgb_left: OPTS = -pix_fmt gbrp -pred left
86 fate-utvideoenc_rgb_median: OPTS = -pix_fmt gbrp -pred median
89 fate-utvideoenc_rgb_none: OPTS = -pix_fmt gbrp -pred none
92 fate-utvideoenc_yuv420_left: OPTS = -pix_fmt yuv420p -pred left
95 fate-utvideoenc_yuv420_median: OPTS = -pix_fmt yuv420p -pred median
98 fate-utvideoenc_yuv420_none: OPTS = -pix_fmt yuv420p -pred none
101 fate-utvideoenc_yuv422_left: OPTS = -pix_fmt yuv422
[all...]
H A 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 rgb2
[all...]
H A 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
12 fate-012v: CMD = framecrc -i $(TARGET_SAMPLES)/012v/sample.avi -pix_fmt yuv422p16le -vf scale
15 fate-aasc: CMD = framecrc -i $(TARGET_SAMPLES)/aasc/AASC-1.5MB.AVI -pix_fmt rgb24 -vf scale
24 fate-alg-mm: CMD = framecrc -i $(TARGET_SAMPLES)/alg-mm/ibmlogo.mm -an -pix_fmt rgb24 -vf scale
30 fate-ansi: CMD = framecrc -chars_per_frame 44100 -i $(TARGET_SAMPLES)/ansi/TRE-IOM5.ANS -pix_fmt rgb24 -vf scale
33 fate-ansi256: CMD = framecrc -chars_per_frame 44100 -i $(TARGET_SAMPLES)/ansi/ansi256.ans -pix_fmt rgb24 -vf scale
36 fate-armovie-escape124: CMD = framecrc -i $(TARGET_SAMPLES)/rpl/ESCAPE.RPL -pix_fmt rgb24 -vf scale -af aresample
54 fate-bethsoft-vid: CMD = framecrc -i $(TARGET_SAMPLES)/bethsoft-vid/ANIM0001.VID -t 5 -pix_fmt rgb24 -vf scale -af aresample
57 fate-bfi: CMD = framecrc -i $(TARGET_SAMPLES)/bfi/2287.bfi -pix_fmt rgb2
[all...]
H A Ddnxhd.mak17 fate-dnxhd-mbaff: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/dnxhd100_cid1260.mov -pix_fmt yuv422p10le -vf scale
18 fate-dnxhr-444: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/dnxhr444_cid1270.mov -pix_fmt yuv444p10le -vf scale
19 fate-dnxhr-12bit: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/dnxhr_cid1271_12bit.mov -pix_fmt yuv422p12le -vf scale
20 fate-dnxhr-parse: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/dnxhr_cid1274.dnxhr -pix_fmt yuv422p
21 fate-dnxhr-prefix1: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/prefix-256x1536.dnxhr -pix_fmt yuv422p
22 fate-dnxhr-prefix2: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/prefix-256x1716.dnxhr -pix_fmt yuv422p
23 fate-dnxhr-prefix3: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/prefix-256x2048.dnxhr -pix_fmt yuv422p
24 fate-dnxhr-prefix4: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/prefix-256x2160.dnxhr -pix_fmt yuv422p
25 fate-dnxhr-prefix5: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/prefix-256x3212.dnxhr -pix_fmt yuv422p
H A Dlavf-video.mak22 fate-lavf-apng: CMD = lavf_video "-pix_fmt rgb24"
23 fate-lavf-apng.png: CMD = lavf_video "-pix_fmt rgb24" "-frames:v 1 -f apng"
24 fate-lavf-gray.fits: CMD = lavf_video "-pix_fmt gray"
25 fate-lavf-gray16be.fits: CMD = lavf_video "-pix_fmt gray16be"
26 fate-lavf-gbrp.fits: CMD = lavf_video "-pix_fmt gbrp"
27 fate-lavf-gbrap.fits: CMD = lavf_video "-pix_fmt gbrap"
28 fate-lavf-gbrp16be.fits: CMD = lavf_video "-pix_fmt gbrp16be"
29 fate-lavf-gbrap16be.fits: CMD = lavf_video "-pix_fmt gbrap16be"
30 fate-lavf-gif: CMD = lavf_video "-pix_fmt rgb24"
H A Dprores.mak14 fate-prores-422: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_422.mov -pix_fmt yuv422p10le -vf scale
15 fate-prores-422_hq: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_422_HQ.mov -pix_fmt yuv422p10le -vf scale
16 fate-prores-422_lt: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_422_LT.mov -pix_fmt yuv422p10le -vf scale
17 fate-prores-422_proxy: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_422_Proxy.mov -pix_fmt yuv422p10le -vf scale
18 fate-prores-alpha: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_with_Alpha.mov -pix_fmt yuva444p12le -vf scale
19 fate-prores-alpha_skip: CMD = framecrc -flags +bitexact -skip_alpha 1 -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_with_Alpha.mov -pix_fmt yuv444p12le -vf scale
20 fate-prores-transparency: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/prores4444_with_transparency.mov -pix_fmt yuva444p12le -vf scale
21 fate-prores-transparency_skip: CMD = framecrc -flags +bitexact -skip_alpha 1 -i $(TARGET_SAMPLES)/prores/prores4444_with_transparency.mov -pix_fmt yuv444p12le -vf scale
22 fate-prores-gray: CMD = framecrc -flags +bitexact -c:a aac_fixed -i $(TARGET_SAMPLES)/prores/gray.mov -pix_fmt yuv422p10le -vf scale -af aresample
/third_party/ffmpeg/libavutil/
H A 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()
145 int av_image_fill_pointers(uint8_t *data[4], enum AVPixelFormat pix_fmt, int height, in av_image_fill_pointers() argument
157 ret = av_image_fill_plane_sizes(sizes, pix_fmt, height, linesizes1); in av_image_fill_pointers()
178 int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt) in avpriv_set_systematic_pal2() argument
185 switch (pix_fmt) { in avpriv_set_systematic_pal2()
218 av_image_alloc(uint8_t *pointers[4], int linesizes[4], int w, int h, enum AVPixelFormat pix_fmt, int align) av_image_alloc() argument
289 av_image_check_size2(unsigned int w, unsigned int h, int64_t max_pixels, enum AVPixelFormat pix_fmt, int log_offset, void *log_ctx) av_image_check_size2() argument
381 image_copy(uint8_t *dst_data[4], const ptrdiff_t dst_linesizes[4], const uint8_t *src_data[4], const ptrdiff_t src_linesizes[4], enum AVPixelFormat pix_fmt, int width, int height, void (*copy_plane)(uint8_t *, ptrdiff_t, const uint8_t *, ptrdiff_t, ptrdiff_t, int)) image_copy() argument
422 av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4], const uint8_t *src_data[4], const int src_linesizes[4], enum AVPixelFormat pix_fmt, int width, int height) av_image_copy() argument
438 av_image_copy_uc_from(uint8_t *dst_data[4], const ptrdiff_t dst_linesizes[4], const uint8_t *src_data[4], const ptrdiff_t src_linesizes[4], enum AVPixelFormat pix_fmt, int width, int height) av_image_copy_uc_from() argument
446 av_image_fill_arrays(uint8_t *dst_data[4], int dst_linesize[4], const uint8_t *src, enum AVPixelFormat pix_fmt, int width, int height, int align) av_image_fill_arrays() argument
466 av_image_get_buffer_size(enum AVPixelFormat pix_fmt, int width, int height, int align) av_image_get_buffer_size() argument
501 av_image_copy_to_buffer(uint8_t *dst, int dst_size, const uint8_t * const src_data[4], const int src_linesize[4], enum AVPixelFormat pix_fmt, int width, int height, int align) av_image_copy_to_buffer() argument
582 av_image_fill_black(uint8_t *dst_data[4], const ptrdiff_t dst_linesize[4], enum AVPixelFormat pix_fmt, enum AVColorRange range, int width, int height) av_image_fill_black() argument
[all...]
H A Dimgutils.h56 * Compute the size of an image line with format pix_fmt and width
61 int av_image_get_linesize(enum AVPixelFormat pix_fmt, int width, int plane);
64 * Fill plane linesizes for an image with pixel format pix_fmt and
70 int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width);
73 * Fill plane sizes for an image with pixel format pix_fmt and height height.
83 int av_image_fill_plane_sizes(size_t size[4], enum AVPixelFormat pix_fmt,
87 * Fill plane data pointers for an image with pixel format pix_fmt and
97 int av_image_fill_pointers(uint8_t *data[4], enum AVPixelFormat pix_fmt, int height,
101 * Allocate an image with size w and h and pixel format pix_fmt, and
111 int w, int h, enum AVPixelFormat pix_fmt, in
[all...]
/third_party/ffmpeg/tools/
H A Dfourcc2pixfmt.c50 static void print_pix_fmt_fourccs(enum AVPixelFormat pix_fmt, const PixelFormatTag *pix_fmt_tags, char sep) 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/
H A Dpixdesc_query.c28 int (*cond)(enum AVPixelFormat pix_fmt);
69 enum AVPixelFormat pix_fmt = av_pix_fmt_desc_get_id(pix_desc); in main() local
70 if (query_tab[i].cond(pix_fmt)) { in main()
72 if (pix_fmt == AV_PIX_FMT_RGB32) pix_name = "rgb32"; in main()
73 else if (pix_fmt == AV_PIX_FMT_RGB32_1) pix_name = "rgb32_1"; in main()
74 else if (pix_fmt == AV_PIX_FMT_BGR32) pix_name = "bgr32"; in main()
75 else if (pix_fmt == AV_PIX_FMT_BGR32_1) pix_name = "bgr32_1"; in main()
/third_party/ffmpeg/libavformat/
H A Dserdec.c49 enum AVPixelFormat pix_fmt; in ser_read_header() local
71 case 0: pix_fmt = depth <= 8 ? AV_PIX_FMT_GRAY8 : endian ? AV_PIX_FMT_GRAY16LE : AV_PIX_FMT_GRAY16BE; break; in ser_read_header()
72 case 8: pix_fmt = depth <= 8 ? AV_PIX_FMT_BAYER_RGGB8 : endian ? AV_PIX_FMT_BAYER_RGGB16LE : AV_PIX_FMT_BAYER_RGGB16BE; break; in ser_read_header()
73 case 9: pix_fmt = depth <= 8 ? AV_PIX_FMT_BAYER_GRBG8 : endian ? AV_PIX_FMT_BAYER_GRBG16LE : AV_PIX_FMT_BAYER_GRBG16BE; break; in ser_read_header()
74 case 10: pix_fmt = depth <= 8 ? AV_PIX_FMT_BAYER_GBRG8 : endian ? AV_PIX_FMT_BAYER_GBRG16LE : AV_PIX_FMT_BAYER_GBRG16BE; break; in ser_read_header()
75 case 11: pix_fmt = depth <= 8 ? AV_PIX_FMT_BAYER_BGGR8 : endian ? AV_PIX_FMT_BAYER_BGGR16LE : AV_PIX_FMT_BAYER_BGGR16BE; break; in ser_read_header()
76 case 100: pix_fmt = depth <= 8 ? AV_PIX_FMT_RGB24 : endian ? AV_PIX_FMT_RGB48LE : AV_PIX_FMT_RGB48BE; break; in ser_read_header()
77 case 101: pix_fmt = depth <= 8 ? AV_PIX_FMT_BGR24 : endian ? AV_PIX_FMT_BGR48LE : AV_PIX_FMT_BGR48BE; break; in ser_read_header()
89 st->codecpar->format = pix_fmt; in ser_read_header()

Completed in 12 milliseconds

12345678910>>...20