Home
last modified time | relevance | path

Searched refs:CLIP_MIN (Results 1 – 8 of 8) sorted by relevance

/dports/multimedia/handbrake/ffmpeg-4.4/libavcodec/
H A Dproresdsp.c30 #define CLIP_MIN (1 << 2) ///< minimum value for clipping resulting pixels macro
31 #define CLIP_MAX_10 (1 << 10) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels
32 #define CLIP_MAX_12 (1 << 12) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels
34 #define CLIP_10(x) (av_clip((x), CLIP_MIN, CLIP_MAX_10))
35 #define CLIP_12(x) (av_clip((x), CLIP_MIN, CLIP_MAX_12))
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavcodec/
H A Dproresdsp.c30 #define CLIP_MIN (1 << 2) ///< minimum value for clipping resulting pixels macro
31 #define CLIP_MAX_10 (1 << 10) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels
32 #define CLIP_MAX_12 (1 << 12) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels
34 #define CLIP_10(x) (av_clip((x), CLIP_MIN, CLIP_MAX_10))
35 #define CLIP_12(x) (av_clip((x), CLIP_MIN, CLIP_MAX_12))
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavcodec/
H A Dproresdsp.c30 #define CLIP_MIN (1 << 2) ///< minimum value for clipping resulting pixels macro
31 #define CLIP_MAX_10 (1 << 10) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels
32 #define CLIP_MAX_12 (1 << 12) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels
34 #define CLIP_10(x) (av_clip((x), CLIP_MIN, CLIP_MAX_10))
35 #define CLIP_12(x) (av_clip((x), CLIP_MIN, CLIP_MAX_12))
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavcodec/
H A Dproresdsp.c30 #define CLIP_MIN (1 << 2) ///< minimum value for clipping resulting pixels macro
31 #define CLIP_MAX_10 (1 << 10) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels
32 #define CLIP_MAX_12 (1 << 12) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels
34 #define CLIP_10(x) (av_clip((x), CLIP_MIN, CLIP_MAX_10))
35 #define CLIP_12(x) (av_clip((x), CLIP_MIN, CLIP_MAX_12))
/dports/emulators/vice/vice-3.5/src/lib/libffmpeg/libavcodec/
H A Dproresdsp.c32 #define CLIP_MIN (1 << (PRORES_BITS_PER_SAMPLE - 8)) ///< minimum value for clipping resu… macro
33 #define CLIP_MAX (1 << PRORES_BITS_PER_SAMPLE) - CLIP_MIN - 1 ///< maximum value for clipping resu…
35 #define CLIP(x) (av_clip((x), CLIP_MIN, CLIP_MAX))
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavcodec/
H A Dproresdsp.c31 #define CLIP_MIN (1 << (PRORES_BITS_PER_SAMPLE - 8)) ///< minimum value for clipping resu… macro
32 #define CLIP_MAX (1 << PRORES_BITS_PER_SAMPLE) - CLIP_MIN - 1 ///< maximum value for clipping resu…
34 #define CLIP(x) (av_clip((x), CLIP_MIN, CLIP_MAX))
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/lib/libffmpeg/libavcodec/
H A Dproresdsp.c32 #define CLIP_MIN (1 << (PRORES_BITS_PER_SAMPLE - 8)) ///< minimum value for clipping resu… macro
33 #define CLIP_MAX (1 << PRORES_BITS_PER_SAMPLE) - CLIP_MIN - 1 ///< maximum value for clipping resu…
35 #define CLIP(x) (av_clip((x), CLIP_MIN, CLIP_MAX))
/dports/games/kobodeluxe/KoboDeluxe-0.5.1/sound/
H A Daudio.c206 #define CLIP_MIN -32700 macro
221 if(l < CLIP_MIN)
222 outbuf[i] = CLIP_MIN;
227 if(r < CLIP_MIN)
228 outbuf[i+1] = CLIP_MIN;