Searched refs:is_chroma (Results 1 - 20 of 20) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/libmpcodecs/
H A Dvf_uspp.c147 int is_chroma= !!i; local
148 int w= width >>is_chroma;
149 int h= height>>is_chroma;
151 int block= BLOCK>>is_chroma;
206 int is_chroma= !!j; local
209 store_slice_c(dst[j], p->temp[j], dst_stride[j], p->temp_stride[j], width>>is_chroma, height>>is_chroma, 8-p->log2_count);
220 int is_chroma= !!i; local
221 int w= ((width + 4*BLOCK-1) & (~(2*BLOCK-1)))>>is_chroma;
222 int h= ((height + 4*BLOCK-1) & (~(2*BLOCK-1)))>>is_chroma;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dfraps.c145 int i, j, ret, is_chroma; local
260 is_chroma = !!i;
262 avctx->width >> is_chroma,
263 avctx->height >> is_chroma,
265 is_chroma, 1)) < 0) {
H A Dproresenc_kostya.c229 int mbs_per_slice, int blocks_per_mb, int is_chroma)
267 if (!is_chroma) {
516 int plane_factor, is_chroma; local
535 is_chroma = (i == 1 || i == 2);
537 if (is_chroma)
539 if (!is_chroma || ctx->chroma_factor == CFACTOR_Y444) {
559 mbs_per_slice, num_cblocks, is_chroma);
758 int plane_factor[MAX_PLANES], is_chroma[MAX_PLANES]; local
775 is_chroma[i] = (i == 1 || i == 2);
777 if (is_chroma[
226 get_slice_data(ProresContext *ctx, const uint16_t *src, int linesize, int x, int y, int w, int h, int16_t *blocks, uint16_t *emu_buf, int mbs_per_slice, int blocks_per_mb, int is_chroma) argument
[all...]
H A Dmimic.c282 const int is_chroma = !!plane; local
283 const int qscale = av_clip(10000 - quality, is_chroma ? 1000 : 2000,
295 if (is_iframe || get_bits1(&ctx->gb) == is_chroma) {
299 if (is_chroma || is_iframe || !get_bits1(&ctx->gb)) {
H A Dcllc.c185 int is_chroma)
195 for (i = 0; i < ctx->avctx->width >> is_chroma; i++) {
183 read_yuv_component_line(CLLCContext *ctx, GetBitContext *gb, int *top_left, VLC *vlc, uint8_t *outbuf, int is_chroma) argument
H A Dg2meet.c197 const int is_chroma = !!plane; local
198 const uint8_t *qmat = is_chroma ? chroma_quant : luma_quant;
201 dc = get_vlc2(gb, c->dc_vlc[is_chroma].table, 9, 3);
212 val = get_vlc2(gb, c->ac_vlc[is_chroma].table, 9, 3);
H A Dbink.c808 int plane_idx, int is_key, int is_chroma)
823 int bw = is_chroma ? (c->avctx->width + 15) >> 4 : (c->avctx->width + 7) >> 3;
824 int bh = is_chroma ? (c->avctx->height + 15) >> 4 : (c->avctx->height + 7) >> 3;
954 int plane_idx, int is_chroma)
968 int bw = is_chroma ? (c->avctx->width + 15) >> 4 : (c->avctx->width + 7) >> 3;
969 int bh = is_chroma ? (c->avctx->height + 15) >> 4 : (c->avctx->height + 7) >> 3;
970 int width = c->avctx->width >> is_chroma;
807 binkb_decode_plane(BinkContext *c, AVFrame *frame, GetBitContext *gb, int plane_idx, int is_key, int is_chroma) argument
953 bink_decode_plane(BinkContext *c, AVFrame *frame, GetBitContext *gb, int plane_idx, int is_chroma) argument
H A Dsnow.c585 int is_chroma= !!p; local
586 int w= is_chroma ? s->avctx->width >>s->chroma_h_shift : s->avctx->width;
587 int h= is_chroma ? s->avctx->height>>s->chroma_v_shift : s->avctx->height;
H A Dproresdec_lgpl.c429 const int16_t *qmat, int is_chroma)
451 if (!is_chroma) {
424 decode_slice_plane(ProresContext *ctx, ProresThreadData *td, const uint8_t *buf, int data_size, uint16_t *out_ptr, int linesize, int mbs_per_slice, int blocks_per_mb, int plane_size_factor, const int16_t *qmat, int is_chroma) argument
H A Dh264.h848 int ff_h264_check_intra_pred_mode(H264Context *h, int mode, int is_chroma);
H A Dh264.c194 int ff_h264_check_intra_pred_mode(H264Context *h, int mode, int is_chroma) argument
218 if (is_chroma && (h->left_samples_available & 0x8080)) {
H A Dutils.c710 int is_chroma = p == 1 || p == 2; local
711 int bytes = is_chroma ? FF_CEIL_RSHIFT(frame->width, desc->log2_chroma_w) : frame->width;
712 int height = is_chroma ? FF_CEIL_RSHIFT(frame->height, desc->log2_chroma_h) : frame->height;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_histogram.c189 const int is_chroma = (component == 1 || component == 2); local
190 const int shift_w = (is_chroma ? h->desc->log2_chroma_w : 0);
191 const int shift_h = (is_chroma ? h->desc->log2_chroma_h : 0);
250 const int is_chroma = (k == 1 || k == 2); local
251 const int dst_h = FF_CEIL_RSHIFT(outlink->h, (is_chroma ? h->desc->log2_chroma_h : 0));
252 const int dst_w = FF_CEIL_RSHIFT(outlink->w, (is_chroma ? h->desc->log2_chroma_w : 0));
H A Dvf_mcdeint.c198 int is_chroma = !!i; local
199 int w = FF_CEIL_RSHIFT(inlink->w, is_chroma);
200 int h = FF_CEIL_RSHIFT(inlink->h, is_chroma);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dfraps.c140 int i, j, is_chroma, planes; local
279 is_chroma = !!i;
281 if(fraps2_decode_plane(s, f->data[i], f->linesize[i], avctx->width >> is_chroma,
282 avctx->height >> is_chroma, buf + offs[i], offs[i + 1] - offs[i], is_chroma, 1) < 0) {
H A Dmimic.c234 const int is_chroma = !!plane; local
235 const int qscale = av_clip(10000-quality,is_chroma?1000:2000,10000)<<2;
247 if(is_iframe || get_bits1(&ctx->gb) == is_chroma) {
252 if(is_chroma || is_iframe || !get_bits1(&ctx->gb)) {
H A Dbink.c793 int is_key, int is_chroma)
808 int bw = is_chroma ? (c->avctx->width + 15) >> 4 : (c->avctx->width + 7) >> 3;
809 int bh = is_chroma ? (c->avctx->height + 15) >> 4 : (c->avctx->height + 7) >> 3;
939 int is_chroma)
953 int bw = is_chroma ? (c->avctx->width + 15) >> 4 : (c->avctx->width + 7) >> 3;
954 int bh = is_chroma ? (c->avctx->height + 15) >> 4 : (c->avctx->height + 7) >> 3;
955 int width = c->avctx->width >> is_chroma;
792 binkb_decode_plane(BinkContext *c, GetBitContext *gb, int plane_idx, int is_key, int is_chroma) argument
938 bink_decode_plane(BinkContext *c, GetBitContext *gb, int plane_idx, int is_chroma) argument
H A Dsnow.c518 int is_chroma= !!p; local
519 int w= s->avctx->width >>is_chroma;
520 int h= s->avctx->height >>is_chroma;
H A Dh264.h660 int ff_h264_check_intra_pred_mode(H264Context *h, int mode, int is_chroma);
H A Dh264.c108 int ff_h264_check_intra_pred_mode(H264Context *h, int mode, int is_chroma){ argument
128 if(is_chroma && (h->left_samples_available&0x8080)){ //mad cow disease mode, aka MBAFF + constrained_intra_pred

Completed in 291 milliseconds