Searched refs:bit_depth (Results 51 - 75 of 97) sorted by relevance

1234

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/
H A Dpngtest.c213 * png_byte bit_depth bit depth of samples
226 if (row_info->bit_depth == 1)
236 if (row_info->bit_depth == 2)
246 if (row_info->bit_depth == 4)
256 if (row_info->bit_depth == 8)
259 if (row_info->bit_depth == 16)
278 if (row_info->bit_depth == 8)
281 if (row_info->bit_depth == 16)
291 if (row_info->bit_depth == 16)
706 int bit_depth, color_typ local
[all...]
H A Dpng.c961 png_uint_32 width, png_uint_32 height, int bit_depth,
1021 if (bit_depth != 1 && bit_depth != 2 && bit_depth != 4 &&
1022 bit_depth != 8 && bit_depth != 16)
1035 if (((color_type == PNG_COLOR_TYPE_PALETTE) && bit_depth > 8) ||
1038 color_type == PNG_COLOR_TYPE_RGB_ALPHA) && bit_depth < 8))
960 png_check_IHDR(png_structp png_ptr, png_uint_32 width, png_uint_32 height, int bit_depth, int color_type, int interlace_type, int compression_type, int filter_type) argument
H A Dpngwutil.c393 int bit_depth, int color_type, int compression_type, int filter_type,
409 switch (bit_depth)
421 if (bit_depth != 8 && bit_depth != 16)
426 switch (bit_depth)
436 if (bit_depth != 8 && bit_depth != 16)
441 if (bit_depth != 8 && bit_depth != 16)
490 png_ptr->bit_depth
392 png_write_IHDR(png_structp png_ptr, png_uint_32 width, png_uint_32 height, int bit_depth, int color_type, int compression_type, int filter_type, int interlace_type) argument
[all...]
H A Dpngget.c76 return info_ptr->bit_depth;
578 png_uint_32 *width, png_uint_32 *height, int *bit_depth,
586 height == NULL || bit_depth == NULL || color_type == NULL)
591 *bit_depth = info_ptr->bit_depth;
609 info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type,
577 png_get_IHDR(png_structp png_ptr, png_infop info_ptr, png_uint_32 *width, png_uint_32 *height, int *bit_depth, int *color_type, int *interlace_type, int *compression_type, int *filter_type) argument
H A Dpngset.c228 png_uint_32 width, png_uint_32 height, int bit_depth,
239 info_ptr->bit_depth = (png_byte)bit_depth;
246 info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type,
257 info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth);
873 int sample_max = (1 << info_ptr->bit_depth);
881 "tRNS chunk has out-of-range samples for bit_depth");
227 png_set_IHDR(png_structp png_ptr, png_infop info_ptr, png_uint_32 width, png_uint_32 height, int bit_depth, int color_type, int interlace_type, int compression_type, int filter_type) argument
H A Dpngrutil.c433 int bit_depth, color_type, compression_type, filter_type; local
452 bit_depth = buf[8];
461 png_ptr->bit_depth = (png_byte)bit_depth;
491 png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth *
494 png_debug1(3, "bit_depth = %d", png_ptr->bit_depth);
497 png_set_IHDR(png_ptr, info_ptr, width, height, bit_depth,
3229 if ((png_ptr->transformations & PNG_PACK) && png_ptr->bit_depth < 8)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddnxhdenc.c134 int max_level = 1 << (ctx->cid_table->bit_depth + 2);
211 if (ctx->cid_table->bit_depth == 8) {
291 int i, index, bit_depth, ret; local
295 bit_depth = 8;
298 bit_depth = 10;
306 ctx->cid = ff_dnxhd_find_cid(avctx, bit_depth);
323 avctx->bits_per_raw_sample = ctx->cid_table->bit_depth;
336 if (ctx->cid_table->bit_depth == 10) {
426 buf[0x21] = ctx->cid_table->bit_depth == 10 ? 0x58 : 0x38;
499 if (ctx->cid_table->bit_depth
[all...]
H A Dhevcdsp.h123 void ff_hevc_dsp_init(HEVCDSPContext *hpc, int bit_depth);
128 void ff_hevcdsp_init_x86(HEVCDSPContext *c, const int bit_depth);
H A Dhevc_ps.c715 sps->bit_depth = get_ue_golomb_long(gb) + 8;
717 if (bit_depth_chroma != sps->bit_depth) {
721 sps->bit_depth, bit_depth_chroma);
726 switch (sps->bit_depth) {
763 sps->pixel_shift = sps->bit_depth > 8;
836 sps->pcm.bit_depth = get_bits(gb, 4) + 1;
841 if (sps->pcm.bit_depth > sps->bit_depth) {
844 sps->pcm.bit_depth, sps->bit_depth);
[all...]
H A Dh264pred.c412 const int bit_depth,
576 switch (bit_depth) {
590 av_assert0(bit_depth<=8);
595 if (ARCH_ARM) ff_h264_pred_init_arm(h, codec_id, bit_depth, chroma_format_idc);
596 if (ARCH_X86) ff_h264_pred_init_x86(h, codec_id, bit_depth, chroma_format_idc);
411 ff_h264_pred_init(H264PredContext *h, int codec_id, const int bit_depth, int chroma_format_idc) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/png/
H A Dpngset.c246 png_uint_32 width, png_uint_32 height, int bit_depth,
275 if (bit_depth != 1 && bit_depth != 2 && bit_depth != 4 &&
276 bit_depth != 8 && bit_depth != 16)
283 if (((color_type == PNG_COLOR_TYPE_PALETTE) && bit_depth > 8) ||
286 color_type == PNG_COLOR_TYPE_RGB_ALPHA) && bit_depth < 8))
325 info_ptr->bit_depth = (png_byte)bit_depth;
245 png_set_IHDR(png_structp png_ptr, png_infop info_ptr, png_uint_32 width, png_uint_32 height, int bit_depth, int color_type, int interlace_type, int compression_type, int filter_type) argument
[all...]
H A Dpngtest.c207 * png_byte bit_depth bit depth of samples
221 if(row_info->bit_depth == 1)
230 if(row_info->bit_depth == 2)
239 if(row_info->bit_depth == 4)
248 if(row_info->bit_depth == 8)
250 if(row_info->bit_depth == 16)
268 if(row_info->bit_depth == 8)
270 if(row_info->bit_depth == 16)
279 if(row_info->bit_depth == 16)dp++;
618 int bit_depth, color_typ local
[all...]
H A Dpngwutil.c372 int bit_depth, int color_type, int compression_type, int filter_type,
385 switch (bit_depth)
396 if (bit_depth != 8 && bit_depth != 16)
401 switch (bit_depth)
411 if (bit_depth != 8 && bit_depth != 16)
416 if (bit_depth != 8 && bit_depth != 16)
465 png_ptr->bit_depth
371 png_write_IHDR(png_structp png_ptr, png_uint_32 width, png_uint_32 height, int bit_depth, int color_type, int compression_type, int filter_type, int interlace_type) argument
[all...]
H A Dpngget.c70 return info_ptr->bit_depth;
535 png_uint_32 *width, png_uint_32 *height, int *bit_depth,
541 bit_depth != NULL && color_type != NULL)
546 *bit_depth = info_ptr->bit_depth;
547 if (info_ptr->bit_depth < 1 || info_ptr->bit_depth > 16)
534 png_get_IHDR(png_structp png_ptr, png_infop info_ptr, png_uint_32 *width, png_uint_32 *height, int *bit_depth, int *color_type, int *interlace_type, int *compression_type, int *filter_type) argument
H A Dpng.h621 png_byte bit_depth; /* 1, 2, 4, 8, or 16 bits/channel (from IHDR) */ member in struct:png_info_struct
677 * in the pixel data. Values are in the range [1, bit_depth], and are
763 * The integer range [0, 2^bit_depth - 1] maps to the floating-point
956 png_byte bit_depth; /* bit depth of row */ member in struct:png_row_info_struct
1103 png_byte bit_depth; /* bit depth of file */ member in struct:png_struct_def
1472 extern PNG_EXPORT(void,png_build_grayscale_palette) PNGARG((int bit_depth,
2014 /* Returns image bit_depth. */
2135 int *bit_depth, int *color_type, int *interlace_method,
2139 png_infop info_ptr, png_uint_32 width, png_uint_32 height, int bit_depth,
2881 int bit_depth, in
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/arm/
H A Dh264qpel_init_arm.c97 av_cold void ff_h264qpel_init_arm(H264QpelContext *c, int bit_depth) argument
99 const int high_bit_depth = bit_depth > 8;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dh264dsp_init.c210 av_cold void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth, argument
219 if (bit_depth == 8) {
294 } else if (bit_depth == 10) {
H A Dh264_intrapred_init.c185 const int bit_depth,
190 if (bit_depth == 8) {
326 } else if (bit_depth == 10) {
184 ff_h264_pred_init_x86(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc) argument
H A Dh264_qpel.c542 av_cold void ff_h264qpel_init_x86(H264QpelContext *c, int bit_depth)
545 int high_bit_depth = bit_depth > 8;
556 } else if (bit_depth == 10) {
589 if (bit_depth == 10) {
616 if (bit_depth == 10) {
628 if (bit_depth == 10) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/x86/
H A Dh264dsp_mmx.c343 void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth, const int chroma_format_idc) argument
351 if (bit_depth == 8) {
433 } else if (bit_depth == 10) {
H A Ddsputilenc_mmx.c1101 int bit_depth = avctx->bits_per_raw_sample; local
1116 if (bit_depth <= 8)
1164 if (bit_depth <= 8)
H A Dh264_intrapred_init.c170 void ff_h264_pred_init_x86(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc) argument
175 if (bit_depth == 8) {
309 } else if (bit_depth == 10) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/aarch64/
H A Dh264qpel_init_aarch64.c98 av_cold void ff_h264qpel_init_aarch64(H264QpelContext *c, int bit_depth) argument
100 const int high_bit_depth = bit_depth > 8;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dimagpng.cpp522 int bit_depth, color_type, interlace_type; local
551 png_get_IHDR( png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, (int*) NULL, (int*) NULL );
557 if (bit_depth < 8)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dh264pred.c364 void ff_h264_pred_init(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc){ argument
523 switch (bit_depth) {
535 if (ARCH_ARM) ff_h264_pred_init_arm(h, codec_id, bit_depth, chroma_format_idc);
536 if (HAVE_MMX) ff_h264_pred_init_x86(h, codec_id, bit_depth, chroma_format_idc);

Completed in 374 milliseconds

1234