Lines Matching defs:logctx
172 static int exif_add_metadata(void *logctx, int count, int type,
179 av_log(logctx, AV_LOG_WARNING,
195 avpriv_request_sample(logctx, "TIFF tag type (%u)", type);
201 static int exif_decode_tag(void *logctx, GetByteContext *gbytes, int le,
223 ret = ff_exif_decode_ifd(logctx, gbytes, le, depth + 1, metadata);
233 ret = exif_add_metadata(logctx, count, type, name, NULL,
243 int ff_exif_decode_ifd(void *logctx, GetByteContext *gbytes,
256 if ((ret = exif_decode_tag(logctx, gbytes, le, depth, metadata)) < 0) {
265 int avpriv_exif_decode_ifd(void *logctx, const uint8_t *buf, int size,
272 return ff_exif_decode_ifd(logctx, &gb, le, depth, metadata);