Searched refs:chroma_format_idc (Results 1 - 25 of 43) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dh264dsp.c68 const int chroma_format_idc)
90 if (chroma_format_idc <= 1)\
96 if (chroma_format_idc <= 1)\
117 if (chroma_format_idc <= 1)\
121 if (chroma_format_idc <= 1)\
126 if (chroma_format_idc <= 1)\
130 if (chroma_format_idc <= 1)\
156 if (ARCH_AARCH64) ff_h264dsp_init_aarch64(c, bit_depth, chroma_format_idc);
157 if (ARCH_ARM) ff_h264dsp_init_arm(c, bit_depth, chroma_format_idc);
158 if (ARCH_PPC) ff_h264dsp_init_ppc(c, bit_depth, chroma_format_idc);
67 ff_h264dsp_init(H264DSPContext *c, const int bit_depth, const int chroma_format_idc) argument
[all...]
H A Dh264pred.h115 const int bit_depth, const int chroma_format_idc);
117 const int bit_depth, const int chroma_format_idc);
119 const int bit_depth, const int chroma_format_idc);
H A Dh264dsp.h120 const int chroma_format_idc);
122 const int chroma_format_idc);
124 const int chroma_format_idc);
126 const int chroma_format_idc);
128 const int chroma_format_idc);
H A Dhevc_ps.c672 sps->chroma_format_idc = get_ue_golomb_long(gb);
673 if (!(sps->chroma_format_idc == 1 || sps->chroma_format_idc == 2 || sps->chroma_format_idc == 3)) {
674 avpriv_report_missing_feature(s->avctx, "chroma_format_idc != {1, 2, 3}\n");
679 if (sps->chroma_format_idc == 3)
683 sps->chroma_format_idc = 0;
728 if (sps->chroma_format_idc == 1) sps->pix_fmt = AV_PIX_FMT_YUV420P;
729 if (sps->chroma_format_idc == 2) sps->pix_fmt = AV_PIX_FMT_YUV422P;
730 if (sps->chroma_format_idc
[all...]
H A Dh264_ps.c316 if (sps->chroma_format_idc == 3) {
375 sps->chroma_format_idc = get_ue_golomb_31(&h->gb);
376 if (sps->chroma_format_idc > 3U) {
377 avpriv_request_sample(h->avctx, "chroma_format_idc %u",
378 sps->chroma_format_idc);
380 } else if (sps->chroma_format_idc == 3) {
403 sps->chroma_format_idc = 1;
499 int vsub = (sps->chroma_format_idc == 1) ? 1 : 0;
500 int hsub = (sps->chroma_format_idc == 1 ||
501 sps->chroma_format_idc
[all...]
H A Dh264pred.c413 int chroma_format_idc)
486 if (chroma_format_idc <= 1) {\
494 if (chroma_format_idc <= 1) {\
503 if (chroma_format_idc <= 1) {\
529 if (chroma_format_idc <= 1) {\
566 if (chroma_format_idc <= 1) {\
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
H A Dvda_h264_dec.c241 sps->chroma_format_idc == 2 ||
242 sps->chroma_format_idc == 3)) {
H A Dh264.h97 #define CHROMA(h) ((h)->sps.chroma_format_idc)
98 #define CHROMA422(h) ((h)->sps.chroma_format_idc == 2)
99 #define CHROMA444(h) ((h)->sps.chroma_format_idc == 3)
177 int chroma_format_idc; member in struct:SPS
569 int chroma_format_idc; ///< chroma format from sps to detect changes member in struct:H264Context
H A Dh264_mb_template.c108 ff_h264_mb_sizes[h->sps.chroma_format_idc] * bit_depth);
116 if (!h->sps.chroma_format_idc) {
141 if (!h->sps.chroma_format_idc) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dh264dsp.c44 void ff_h264dsp_init(H264DSPContext *c, const int bit_depth, const int chroma_format_idc) argument
56 if (chroma_format_idc == 1)\
62 if (chroma_format_idc == 1)\
83 if (chroma_format_idc == 1)\
87 if (chroma_format_idc == 1)\
92 if (chroma_format_idc == 1)\
96 if (chroma_format_idc == 1)\
114 if (ARCH_ARM) ff_h264dsp_init_arm(c, bit_depth, chroma_format_idc);
115 if (HAVE_ALTIVEC) ff_h264dsp_init_ppc(c, bit_depth, chroma_format_idc);
116 if (HAVE_MMX) ff_h264dsp_init_x86(c, bit_depth, chroma_format_idc);
[all...]
H A Dh264pred.h104 void ff_h264_pred_init(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc);
105 void ff_h264_pred_init_arm(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc);
106 void ff_h264_pred_init_x86(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc);
H A Dh264dsp.h79 void ff_h264dsp_init(H264DSPContext *c, const int bit_depth, const int chroma_format_idc);
80 void ff_h264dsp_init_arm(H264DSPContext *c, const int bit_depth, const int chroma_format_idc);
81 void ff_h264dsp_init_ppc(H264DSPContext *c, const int bit_depth, const int chroma_format_idc);
82 void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth, const int chroma_format_idc);
H A Dh264_ps.c290 if(sps->chroma_format_idc == 3){
295 if(sps->chroma_format_idc == 3){
341 sps->chroma_format_idc= get_ue_golomb_31(&s->gb);
342 if(sps->chroma_format_idc > 3) {
343 av_log(h->s.avctx, AV_LOG_ERROR, "chroma_format_idc (%u) out of range\n", sps->chroma_format_idc);
345 } else if(sps->chroma_format_idc == 3) {
353 sps->chroma_format_idc= 1;
422 int crop_vertical_limit = sps->chroma_format_idc & 2 ? 16 : 8;
423 int crop_horizontal_limit = sps->chroma_format_idc
[all...]
H A Dh264pred.c364 void ff_h264_pred_init(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc){ argument
437 if (chroma_format_idc == 1) {\
445 if (chroma_format_idc == 1) {\
453 if (chroma_format_idc == 1) {\
479 if (chroma_format_idc == 1) {\
513 if (chroma_format_idc == 1) {\
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);
H A Dh264.h88 #define CHROMA422 (h->sps.chroma_format_idc == 2)
89 #define CHROMA444 (h->sps.chroma_format_idc == 3)
156 int chroma_format_idc; member in struct:SPS
H A Dvaapi_h264.c249 pic_param->seq_fields.bits.chroma_format_idc = h->sps.chroma_format_idc;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/arm/
H A Dh264dsp_init_arm.c70 static void ff_h264dsp_init_neon(H264DSPContext *c, const int bit_depth, const int chroma_format_idc) argument
90 if (chroma_format_idc == 1)
98 void ff_h264dsp_init_arm(H264DSPContext *c, const int bit_depth, const int chroma_format_idc) argument
100 if (HAVE_NEON) ff_h264dsp_init_neon(c, bit_depth, chroma_format_idc);
H A Dh264pred_init_arm.c45 static void ff_h264_pred_init_neon(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc) argument
77 void ff_h264_pred_init_arm(H264PredContext *h, int codec_id, int bit_depth, const int chroma_format_idc) argument
79 if (HAVE_NEON) ff_h264_pred_init_neon(h, codec_id, bit_depth, chroma_format_idc);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/arm/
H A Dh264pred_init_arm.c50 const int chroma_format_idc)
57 if(chroma_format_idc == 1){
88 int bit_depth, const int chroma_format_idc)
93 h264_pred_init_neon(h, codec_id, bit_depth, chroma_format_idc);
48 h264_pred_init_neon(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc) argument
87 ff_h264_pred_init_arm(H264PredContext *h, int codec_id, int bit_depth, const int chroma_format_idc) argument
H A Dh264dsp_init_arm.c74 const int chroma_format_idc)
80 if(chroma_format_idc == 1){
97 if (chroma_format_idc <= 1)
107 const int chroma_format_idc)
118 h264dsp_init_neon(c, bit_depth, chroma_format_idc);
73 h264dsp_init_neon(H264DSPContext *c, const int bit_depth, const int chroma_format_idc) argument
106 ff_h264dsp_init_arm(H264DSPContext *c, const int bit_depth, const int chroma_format_idc) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dh264dsp_init.c211 const int chroma_format_idc)
216 if (EXTERNAL_MMXEXT(cpu_flags) && chroma_format_idc <= 1)
228 if (chroma_format_idc <= 1)
239 if (chroma_format_idc <= 1)
245 if (chroma_format_idc <= 1) {
268 if (chroma_format_idc <= 1)
311 if (chroma_format_idc <= 1)
351 if (chroma_format_idc <= 1)
210 ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth, const int chroma_format_idc) argument
H A Dh264_intrapred_init.c186 const int chroma_format_idc)
194 if (chroma_format_idc <= 1) {
203 if (chroma_format_idc <= 1)
219 if (chroma_format_idc <= 1)
245 if (chroma_format_idc <= 1) {
257 if (chroma_format_idc <= 1)
284 if (chroma_format_idc <= 1)
299 if (chroma_format_idc <= 1)
315 if (chroma_format_idc <= 1)
331 if (chroma_format_idc <
184 ff_h264_pred_init_x86(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/aarch64/
H A Dh264dsp_init_aarch64.c73 const int chroma_format_idc)
95 if (chroma_format_idc <= 1)
72 ff_h264dsp_init_aarch64(H264DSPContext *c, const int bit_depth, const int chroma_format_idc) argument
/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
347 if (chroma_format_idc == 1 && mm_flags & AV_CPU_FLAG_MMX2) {
361 if (chroma_format_idc == 1)
371 if (chroma_format_idc == 1)
377 if (chroma_format_idc == 1) {
400 if (chroma_format_idc == 1)
451 if (chroma_format_idc == 1)
492 if (chroma_format_idc == 1)
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
179 if (chroma_format_idc == 1) {
188 if (chroma_format_idc == 1)
203 if (chroma_format_idc == 1)
228 if (chroma_format_idc == 1) {
240 if (chroma_format_idc == 1)
267 if (chroma_format_idc == 1)
282 if (chroma_format_idc == 1)
298 if (chroma_format_idc == 1)
314 if (chroma_format_idc
[all...]

Completed in 277 milliseconds

12