Home
last modified time | relevance | path

Searched refs:stereo3d (Results 1 – 15 of 15) sorted by relevance

/third_party/ffmpeg/tests/fate/
Dfilter-video.mak601 FATE_STEREO3D += fate-filter-stereo3d-al-sbsl
602 …-filter-stereo3d-al-sbsl: CMD = framecrc -c:v pgmyuv -i $(SRC) -frames:v 5 -flags +bitexact -sws_f…
604 FATE_STEREO3D += fate-filter-stereo3d-ar-abl
605 …e-filter-stereo3d-ar-abl: CMD = framecrc -c:v pgmyuv -i $(SRC) -frames:v 5 -flags +bitexact -sws_f…
607 FATE_STEREO3D += fate-filter-stereo3d-abr-mr
608 …e-filter-stereo3d-abr-mr: CMD = framecrc -c:v pgmyuv -i $(SRC) -frames:v 5 -flags +bitexact -sws_f…
610 FATE_STEREO3D += fate-filter-stereo3d-abr-ml
611 …e-filter-stereo3d-abr-ml: CMD = framecrc -c:v pgmyuv -i $(SRC) -frames:v 5 -flags +bitexact -sws_f…
613 FATE_STEREO3D += fate-filter-stereo3d-sbsl-abl
614 …-filter-stereo3d-sbsl-abl: CMD = framecrc -c:v pgmyuv -i $(SRC) -frames:v 5 -flags +bitexact -sws_…
[all …]
/third_party/ffmpeg/libavutil/
DMakefile75 stereo3d.h \
159 stereo3d.o \
/third_party/ffmpeg/libavcodec/
Dmjpegdec.c1975 av_freep(&s->stereo3d); in mjpeg_decode_app()
1976 s->stereo3d = av_stereo3d_alloc(); in mjpeg_decode_app()
1977 if (!s->stereo3d) { in mjpeg_decode_app()
1981 s->stereo3d->type = AV_STEREO3D_2D; in mjpeg_decode_app()
1985 s->stereo3d->type = AV_STEREO3D_LINES; in mjpeg_decode_app()
1988 s->stereo3d->type = AV_STEREO3D_SIDEBYSIDE; in mjpeg_decode_app()
1991 s->stereo3d->type = AV_STEREO3D_TOPBOTTOM; in mjpeg_decode_app()
1995 s->stereo3d->flags = AV_STEREO3D_FLAG_INVERT; in mjpeg_decode_app()
2407 av_freep(&s->stereo3d); in ff_mjpeg_receive_frame()
2824 if (s->stereo3d) { in ff_mjpeg_receive_frame()
[all …]
Dmjpegdec.h142 …AVStereo3D *stereo3d; ///!< stereoscopic information (cached, since it is read before frame alloca… member
Dpngenc.c375 AVStereo3D *stereo3d = (AVStereo3D *)side_data->data; in encode_headers() local
376 switch (stereo3d->type) { in encode_headers()
378 s->buf[0] = ((stereo3d->flags & AV_STEREO3D_FLAG_INVERT) == 0) ? 1 : 0; in encode_headers()
Dpngdec.c1492 AVStereo3D *stereo3d = av_stereo3d_create_side_data(f); in output_frame() local
1493 if (!stereo3d) { in output_frame()
1498 stereo3d->type = AV_STEREO3D_SIDEBYSIDE; in output_frame()
1499 stereo3d->flags = s->stereo_mode ? 0 : AV_STEREO3D_FLAG_INVERT; in output_frame()
Dmpeg12dec.c62 AVStereo3D stereo3d; member
1645 *stereo = s1->stereo3d; in mpeg_field_start()
2414 s1->stereo3d.type = AV_STEREO3D_SIDEBYSIDE; in mpeg_decode_user_data()
2417 s1->stereo3d.type = AV_STEREO3D_TOPBOTTOM; in mpeg_decode_user_data()
2420 s1->stereo3d.type = AV_STEREO3D_2D; in mpeg_decode_user_data()
2423 s1->stereo3d.type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX; in mpeg_decode_user_data()
/third_party/ffmpeg/libavformat/
Disom.h228 AVStereo3D *stereo3d; member
Dmov.c5589 if (sc->stereo3d) in mov_read_st3d()
5610 sc->stereo3d = av_stereo3d_alloc(); in mov_read_st3d()
5611 if (!sc->stereo3d) in mov_read_st3d()
5614 sc->stereo3d->type = type; in mov_read_st3d()
5784 if (av_stristr(buffer, "<GSpherical:StereoMode>") && !sc->stereo3d) { in mov_parse_uuid_spherical()
5794 sc->stereo3d = av_stereo3d_alloc(); in mov_parse_uuid_spherical()
5795 if (!sc->stereo3d) in mov_parse_uuid_spherical()
5798 sc->stereo3d->type = mode; in mov_parse_uuid_spherical()
7450 av_freep(&sc->stereo3d); in mov_read_close()
7779 if (sc->stereo3d) { in mov_read_header()
[all …]
/third_party/ffmpeg/libavfilter/x86/
Dvf_stereo3d.asm2 ;* x86-optimized functions for stereo3d filter
/third_party/ffmpeg/doc/
DAPIchanges447 2017-11-29 - d268094f88 - lavu 56.4.100 / 56.7.0 - stereo3d.h
1177 Add AV_PKT_DATA_STEREO3D to export container-level stereo3d information.
1561 stereo3d.h API, that identify codec-independent stereo3d information.
Dfilters.texi18945 @section stereo3d
19145 stereo3d=sbsl:aybd
19151 stereo3d=abl:sbsr
/third_party/ffmpeg/libavfilter/
Dvf_stereo3d.c221 AVFILTER_DEFINE_CLASS(stereo3d);
/third_party/ffmpeg/
DBUILD.gn1559 "//third_party/ffmpeg/libavutil/stereo3d.c",
DChangelog1086 - stereo3d filter ported from libmpcodecs