Searched refs:ff_tget_short (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | tiff_common.c | 43 unsigned ff_tget_short(GetByteContext *gb, int le) in ff_tget_short() function 66 case TIFF_SHORT: return ff_tget_short(gb, le); in ff_tget() 193 int v = is_signed ? (int16_t)ff_tget_short(gb, le) : ff_tget_short(gb, le); in ff_tadd_shorts_metadata() 276 if (ff_tget_short(gb, *le) != 42) { in ff_tdecode_header() 292 *tag = ff_tget_short(gb, le); in ff_tread_tag() 293 *type = ff_tget_short(gb, le); in ff_tread_tag()
|
D | tiff_common.h | 71 unsigned ff_tget_short(GetByteContext *gb, int le);
|
D | exif.c | 121 entries = ff_tget_short(gbytes, le); in ff_exif_decode_ifd()
|
D | tiff.c | 1595 s->geotag_count = ff_tget_short(&s->gb, s->le); in tiff_decode_tag() 1612 s->geotags[i].key = ff_tget_short(&s->gb, s->le); in tiff_decode_tag() 1613 s->geotags[i].type = ff_tget_short(&s->gb, s->le); in tiff_decode_tag() 1614 s->geotags[i].count = ff_tget_short(&s->gb, s->le); in tiff_decode_tag() 1617 … s->geotags[i].val = get_geokey_val(s->geotags[i].key, ff_tget_short(&s->gb, s->le)); in tiff_decode_tag() 1619 s->geotags[i].offset = ff_tget_short(&s->gb, s->le); in tiff_decode_tag() 1827 entries = ff_tget_short(&s->gb, le); in decode_frame()
|