Home
last modified time | relevance | path

Searched refs:logctx (Results 1 – 25 of 42) sorted by relevance

12

/third_party/ffmpeg/libavcodec/
Dhevc_parse.c26 int err_recognition, int apply_defdispwin, void *logctx) in hevc_decode_nal_units() argument
32 ret = ff_h2645_packet_split(&pkt, buf, buf_size, logctx, is_nalff, in hevc_decode_nal_units()
46 ret = ff_hevc_decode_nal_vps(&nal->gb, logctx, ps); in hevc_decode_nal_units()
51 ret = ff_hevc_decode_nal_sps(&nal->gb, logctx, ps, apply_defdispwin); in hevc_decode_nal_units()
56 ret = ff_hevc_decode_nal_pps(&nal->gb, logctx, ps); in hevc_decode_nal_units()
62 ret = ff_hevc_decode_nal_sei(&nal->gb, logctx, sei, ps, nal->type); in hevc_decode_nal_units()
67 av_log(logctx, AV_LOG_VERBOSE, "Ignoring NAL type %d in extradata\n", nal->type); in hevc_decode_nal_units()
82 int err_recognition, int apply_defdispwin, void *logctx) in ff_hevc_decode_extradata() argument
115 av_log(logctx, AV_LOG_ERROR, in ff_hevc_decode_extradata()
122 logctx); in ff_hevc_decode_extradata()
[all …]
Dh264_parse.c30 int picture_structure, void *logctx) in ff_h264_pred_weight_table() argument
40 …av_log(logctx, AV_LOG_ERROR, "luma_log2_weight_denom %d is out of range\n", pwt->luma_log2_weight_… in ff_h264_pred_weight_table()
48 …av_log(logctx, AV_LOG_ERROR, "chroma_log2_weight_denom %d is out of range\n", pwt->chroma_log2_wei… in ff_h264_pred_weight_table()
123 avpriv_request_sample(logctx, "Out of range weight"); in ff_h264_pred_weight_table()
131 int ff_h264_check_intra4x4_pred_mode(int8_t *pred_mode_cache, void *logctx, in ff_h264_check_intra4x4_pred_mode() argument
146 av_log(logctx, AV_LOG_ERROR, in ff_h264_check_intra4x4_pred_mode()
162 av_log(logctx, AV_LOG_ERROR, in ff_h264_check_intra4x4_pred_mode()
179 int ff_h264_check_intra_pred_mode(void *logctx, int top_samples_available, in ff_h264_check_intra_pred_mode() argument
187 av_log(logctx, AV_LOG_ERROR, in ff_h264_check_intra_pred_mode()
195 av_log(logctx, AV_LOG_ERROR, in ff_h264_check_intra_pred_mode()
[all …]
Dcodec2utils.c26 int avpriv_codec2_mode_bit_rate(void *logctx, int mode) in avpriv_codec2_mode_bit_rate() argument
28 int frame_size = avpriv_codec2_mode_frame_size(logctx, mode); in avpriv_codec2_mode_bit_rate()
29 int block_align = avpriv_codec2_mode_block_align(logctx, mode); in avpriv_codec2_mode_bit_rate()
38 int avpriv_codec2_mode_frame_size(void *logctx, int mode) in avpriv_codec2_mode_frame_size() argument
53 av_log(logctx, AV_LOG_ERROR, "unknown codec2 mode %i, can't find frame_size\n", mode); in avpriv_codec2_mode_frame_size()
60 int avpriv_codec2_mode_block_align(void *logctx, int mode) in avpriv_codec2_mode_block_align() argument
75 av_log(logctx, AV_LOG_ERROR, "unknown codec2 mode %i, can't find block_align\n", mode); in avpriv_codec2_mode_block_align()
Dhevc_sei.c129 void *logctx, int size) in decode_nal_sei_pic_timing() argument
142 av_log(logctx, AV_LOG_DEBUG, "BOTTOM Field\n"); in decode_nal_sei_pic_timing()
145 av_log(logctx, AV_LOG_DEBUG, "TOP Field\n"); in decode_nal_sei_pic_timing()
148 av_log(logctx, AV_LOG_DEBUG, "Frame/Field Doubling\n"); in decode_nal_sei_pic_timing()
151 av_log(logctx, AV_LOG_DEBUG, "Frame/Field Tripling\n"); in decode_nal_sei_pic_timing()
247 static int decode_nal_sei_active_parameter_sets(HEVCSEI *s, GetBitContext *gb, void *logctx) in decode_nal_sei_active_parameter_sets() argument
259 av_log(logctx, AV_LOG_ERROR, "num_sps_ids_minus1 %d invalid\n", num_sps_ids_minus1); in decode_nal_sei_active_parameter_sets()
265 … av_log(logctx, AV_LOG_ERROR, "active_parameter_set_id %d invalid\n", active_seq_parameter_set_id); in decode_nal_sei_active_parameter_sets()
283 static int decode_nal_sei_prefix(GetBitContext *gb, void *logctx, HEVCSEI *s, in decode_nal_sei_prefix() argument
294 return decode_nal_sei_pic_timing(s, gb, ps, logctx, size); in decode_nal_sei_prefix()
[all …]
Dexif.c44 static int exif_add_metadata(void *logctx, int count, int type, in exif_add_metadata() argument
51 av_log(logctx, AV_LOG_WARNING, in exif_add_metadata()
67 avpriv_request_sample(logctx, "TIFF tag type (%u)", type); in exif_add_metadata()
73 static int exif_decode_tag(void *logctx, GetByteContext *gbytes, int le, in exif_decode_tag() argument
95 ret = ff_exif_decode_ifd(logctx, gbytes, le, depth + 1, metadata); in exif_decode_tag()
108 ret = exif_add_metadata(logctx, count, type, use_name, NULL, in exif_decode_tag()
122 int ff_exif_decode_ifd(void *logctx, GetByteContext *gbytes, in ff_exif_decode_ifd() argument
135 if ((ret = exif_decode_tag(logctx, gbytes, le, depth, metadata)) < 0) { in ff_exif_decode_ifd()
144 int avpriv_exif_decode_ifd(void *logctx, const uint8_t *buf, int size, in avpriv_exif_decode_ifd() argument
151 return ff_exif_decode_ifd(logctx, &gb, le, depth, metadata); in avpriv_exif_decode_ifd()
Dh264_sei.c58 void *logctx) in ff_h264_sei_process_picture_timing() argument
117 av_log(logctx, AV_LOG_DEBUG, "ct_type:%X pic_struct:%d\n", in ff_h264_sei_process_picture_timing()
125 void *logctx) in decode_picture_timing() argument
132 av_log(logctx, AV_LOG_ERROR, "Unaligned SEI payload\n"); in decode_picture_timing()
136 av_log(logctx, AV_LOG_ERROR, "Picture timing SEI payload too large\n"); in decode_picture_timing()
169 GetBitContext *gb, void *logctx, in decode_registered_user_data_closed_caption() argument
224 void *logctx, int size) in decode_registered_user_data() argument
249 logctx, size); in decode_registered_user_data()
259 void *logctx, int size) in decode_unregistered_user_data() argument
285 static int decode_recovery_point(H264SEIRecoveryPoint *h, GetBitContext *gb, void *logctx) in decode_recovery_point() argument
[all …]
Dh264_parse.h59 int picture_structure, void *logctx);
65 int ff_h264_check_intra4x4_pred_mode(int8_t *pred_mode_cache, void *logctx,
72 int ff_h264_check_intra_pred_mode(void *logctx, int top_samples_available,
78 int slice_type_nos, int picture_structure, void *logctx);
86 int err_recognition, void *logctx);
Dnvdec.c60 #define CHECK_CU(x) FF_CUDA_CHECK_DL(logctx, decoder->cudl, x)
96 CUVIDDECODECREATEINFO *params, void *logctx) in nvdec_test_capabilities() argument
106 … av_log(logctx, AV_LOG_WARNING, "Used Nvidia driver is too old to perform a capability check.\n"); in nvdec_test_capabilities()
107 av_log(logctx, AV_LOG_WARNING, "The minimum required version is " in nvdec_test_capabilities()
121 av_log(logctx, AV_LOG_VERBOSE, "NVDEC capabilities:\n"); in nvdec_test_capabilities()
122 av_log(logctx, AV_LOG_VERBOSE, "format supported: %s, max_mb_count: %d\n", in nvdec_test_capabilities()
124 av_log(logctx, AV_LOG_VERBOSE, "min_width: %d, max_width: %d\n", in nvdec_test_capabilities()
126 av_log(logctx, AV_LOG_VERBOSE, "min_height: %d, max_height: %d\n", in nvdec_test_capabilities()
130 av_log(logctx, AV_LOG_ERROR, "Hardware is lacking required capabilities\n"); in nvdec_test_capabilities()
135 av_log(logctx, AV_LOG_ERROR, "Video width %d not within range from %d to %d\n", in nvdec_test_capabilities()
[all …]
Dh2645_parse.c292 static int hevc_parse_nal_header(H2645NAL *nal, void *logctx) in hevc_parse_nal_header() argument
306 av_log(logctx, AV_LOG_DEBUG, in hevc_parse_nal_header()
313 static int h264_parse_nal_header(H2645NAL *nal, void *logctx) in h264_parse_nal_header() argument
323 av_log(logctx, AV_LOG_DEBUG, in h264_parse_nal_header()
393 void *logctx, int is_nalff, int nal_length_size, in ff_h2645_packet_split() argument
417 bc.buffer, bytestream2_get_bytes_left(&bc), &i, logctx); in ff_h2645_packet_split()
428 av_log(logctx, AV_LOG_WARNING, "Exceeded next NALFF position, re-syncing.\n"); in ff_h2645_packet_split()
441 av_log(logctx, AV_LOG_ERROR, "No start code is found.\n"); in ff_h2645_packet_split()
484 av_log(logctx, AV_LOG_DEBUG, in ff_h2645_packet_split()
504 ret = hevc_parse_nal_header(nal, logctx); in ff_h2645_packet_split()
[all …]
Dav1_parse.c29 int ff_av1_extract_obu(AV1OBU *obu, const uint8_t *buf, int length, void *logctx) in ff_av1_extract_obu() argument
49 av_log(logctx, AV_LOG_DEBUG, in ff_av1_extract_obu()
56 int ff_av1_packet_split(AV1Packet *pkt, const uint8_t *buf, int length, void *logctx) in ff_av1_packet_split() argument
83 consumed = ff_av1_extract_obu(obu, bc.buffer, bytestream2_get_bytes_left(&bc), logctx); in ff_av1_packet_split()
92 av_log(logctx, AV_LOG_ERROR, "Invalid OBU of type %d, skipping.\n", obu->type); in ff_av1_packet_split()
Dcodec2utils.h54 int avpriv_codec2_mode_bit_rate(void *logctx, int mode);
57 int avpriv_codec2_mode_frame_size(void *logctx, int mode);
60 int avpriv_codec2_mode_block_align(void *logctx, int mode);
Dh2645_parse.h110 void *logctx, int is_nalff, int nal_length_size,
119 int buf_size, int *buf_index, void *logctx) in get_nalsize() argument
131 av_log(logctx, AV_LOG_ERROR, in get_nalsize()
Dexif.h167 int avpriv_exif_decode_ifd(void *logctx, const uint8_t *buf, int size,
170 int ff_exif_decode_ifd(void *logctx, GetByteContext *gbytes, int le,
Dmpeg4audio.c87 int sync_extension, void *logctx) in ff_mpeg4audio_get_config_gb() argument
97 av_log(logctx, AV_LOG_ERROR, "Invalid chan_config %d\n", c->chan_config); in ff_mpeg4audio_get_config_gb()
178 int size, int sync_extension, void *logctx) in avpriv_mpeg4audio_get_config2() argument
190 return ff_mpeg4audio_get_config_gb(c, &gb, sync_extension, logctx); in avpriv_mpeg4audio_get_config2()
Dlibopenh264.c49 int ff_libopenh264_check_version(void *logctx) in ff_libopenh264_check_version() argument
57 av_log(logctx, AV_LOG_ERROR, "Incorrect library version loaded\n"); in ff_libopenh264_check_version()
Dqsv.c296 void *logctx) in qsv_load_plugins() argument
310 av_log(logctx, AV_LOG_ERROR, "Invalid plugin UID length\n"); in qsv_load_plugins()
318 av_log(logctx, AV_LOG_ERROR, "Invalid plugin UID\n"); in qsv_load_plugins()
330 err = ff_qsv_print_error(logctx, ret, errorbuf); in qsv_load_plugins()
537 av_log(ctx->logctx, AV_LOG_ERROR, "Mismatching surface properties in an " in qsv_frame_alloc()
546 av_log(ctx->logctx, AV_LOG_ERROR, in qsv_frame_alloc()
576 av_log(ctx->logctx, AV_LOG_ERROR, in qsv_frame_alloc()
593 av_log(ctx->logctx, AV_LOG_ERROR, in qsv_frame_alloc()
790 qsv_frames_ctx->logctx = avctx; in ff_qsv_init_session_frames()
Dh264_parser.c69 int buf_size, void *logctx) in h264_find_frame_end() argument
82 av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal length size invalid\n"); in h264_find_frame_end()
91 … av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal size %d remaining %d\n", nalsize, buf_size - i); in h264_find_frame_end()
159 void *logctx) in scan_mmco_reset() argument
174 slice_type_nos, p->picture_structure, logctx) < 0) in scan_mmco_reset()
188 av_log(logctx, AV_LOG_ERROR, in scan_mmco_reset()
196 av_log(logctx, AV_LOG_ERROR, in scan_mmco_reset()
208 &pwt, p->picture_structure, logctx); in scan_mmco_reset()
215 av_log(logctx, AV_LOG_ERROR, in scan_mmco_reset()
Dh264_ps.c107 static inline int decode_hrd_parameters(GetBitContext *gb, void *logctx, in decode_hrd_parameters() argument
114 av_log(logctx, AV_LOG_ERROR, "cpb_count %d invalid\n", cpb_count); in decode_hrd_parameters()
133 static inline int decode_vui_parameters(GetBitContext *gb, void *logctx, in decode_vui_parameters() argument
149 av_log(logctx, AV_LOG_ERROR, "illegal aspect ratio\n"); in decode_vui_parameters()
190 av_log(logctx, AV_LOG_WARNING, "Truncated VUI (%d)\n", get_bits_left(gb)); in decode_vui_parameters()
199 av_log(logctx, AV_LOG_ERROR, in decode_vui_parameters()
212 if (decode_hrd_parameters(gb, logctx, sps) < 0) in decode_vui_parameters()
216 if (decode_hrd_parameters(gb, logctx, sps) < 0) in decode_vui_parameters()
241 av_log(logctx, AV_LOG_ERROR, in decode_vui_parameters()
726 static int more_rbsp_data_in_pps(const SPS *sps, void *logctx) in more_rbsp_data_in_pps() argument
[all …]
Dav1_parse.h70 void *logctx);
80 void *logctx);
Dh264_sei.h198 const struct H264ParamSets *ps, void *logctx);
214 void *logctx);
Dmpeg4audio.h60 int sync_extension, void *logctx);
85 int size, int sync_extension, void *logctx);
Ddv_profile_internal.h27 void ff_dv_print_profiles(void *logctx, int loglevel);
Dhevc_parse.h34 int err_recognition, int apply_defdispwin, void *logctx);
/third_party/ffmpeg/compat/cuda/
Ddynlink_loader.h28 #define FFNV_LOG_FUNC(logctx, msg, ...) av_log(logctx, AV_LOG_ERROR, msg, __VA_ARGS__) argument
29 #define FFNV_DEBUG_LOG_FUNC(logctx, msg, ...) av_log(logctx, AV_LOG_DEBUG, msg, __VA_ARGS__) argument
/third_party/ffmpeg/libavformat/
Dformat.c223 const char *filename, void *logctx, in av_probe_input_buffer2() argument
235 av_log(logctx, AV_LOG_ERROR, in av_probe_input_buffer2()
284 av_log(logctx, AV_LOG_WARNING, in av_probe_input_buffer2()
288 av_log(logctx, AV_LOG_DEBUG, in av_probe_input_buffer2()
313 const char *filename, void *logctx, in av_probe_input_buffer() argument
316 int ret = av_probe_input_buffer2(pb, fmt, filename, logctx, offset, max_probe_size); in av_probe_input_buffer()

12