mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-29 22:40:23 +00:00
avformat/avidec: also print position in print_tag()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
50a28b1393
commit
7c98c834e0
@ -111,8 +111,8 @@ static int avi_load_index(AVFormatContext *s);
|
||||
static int guess_ni_flag(AVFormatContext *s);
|
||||
|
||||
#define print_tag(str, tag, size) \
|
||||
av_dlog(NULL, "%s: tag=%c%c%c%c size=0x%x\n", \
|
||||
str, tag & 0xff, \
|
||||
av_dlog(NULL, "pos:%"PRIX64" %s: tag=%c%c%c%c size=0x%x\n", \
|
||||
avio_tell(pb), str, tag & 0xff, \
|
||||
(tag >> 8) & 0xff, \
|
||||
(tag >> 16) & 0xff, \
|
||||
(tag >> 24) & 0xff, \
|
||||
|
Loading…
Reference in New Issue
Block a user