Lines Matching defs:logctx
134 const HEVCParamSets *ps, void *logctx)
147 av_log(logctx, AV_LOG_DEBUG, "BOTTOM Field\n");
150 av_log(logctx, AV_LOG_DEBUG, "TOP Field\n");
153 av_log(logctx, AV_LOG_DEBUG, "Frame/Field Doubling\n");
156 av_log(logctx, AV_LOG_DEBUG, "Frame/Field Tripling\n");
256 void *logctx)
272 av_log(logctx, AV_LOG_VERBOSE,
323 av_log(logctx, AV_LOG_VERBOSE,
331 av_log(logctx, AV_LOG_VERBOSE,
340 static int decode_nal_sei_active_parameter_sets(HEVCSEI *s, GetBitContext *gb, void *logctx)
351 av_log(logctx, AV_LOG_ERROR, "num_sps_ids_minus1 %d invalid\n", num_sps_ids_minus1);
357 av_log(logctx, AV_LOG_ERROR, "active_parameter_set_id %d invalid\n", active_seq_parameter_set_id);
467 void *logctx, HEVCSEI *s,
478 return decode_nal_sei_pic_timing(s, gb, ps, logctx);
484 return decode_nal_sei_active_parameter_sets(s, gb, logctx);
486 return decode_nal_sei_user_data_registered_itu_t_t35(s, gbyte, logctx);
496 av_log(logctx, AV_LOG_DEBUG, "Skipped PREFIX SEI %d\n", type);
502 void *logctx, HEVCSEI *s, int type)
508 av_log(logctx, AV_LOG_DEBUG, "Skipped SUFFIX SEI %d\n", type);
513 static int decode_nal_sei_message(GetByteContext *gb, void *logctx, HEVCSEI *s,
522 av_log(logctx, AV_LOG_DEBUG, "Decoding SEI\n");
545 logctx, s, ps, payload_type);
548 logctx, s, payload_type);
552 int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s,
563 ret = decode_nal_sei_message(&gbyte, logctx, s, ps, type);