avcodec/dvdsubdec: Fix types for offset1/2 in ff_dlog()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
		@@ -318,7 +318,7 @@ static int decode_dvd_subtitles(DVDSubContext *ctx, AVSubtitle *sub_header,
 | 
				
			|||||||
                    goto fail;
 | 
					                    goto fail;
 | 
				
			||||||
                offset1 = AV_RB16(buf + pos);
 | 
					                offset1 = AV_RB16(buf + pos);
 | 
				
			||||||
                offset2 = AV_RB16(buf + pos + 2);
 | 
					                offset2 = AV_RB16(buf + pos + 2);
 | 
				
			||||||
                ff_dlog(NULL, "offset1=0x%04x offset2=0x%04x\n", offset1, offset2);
 | 
					                ff_dlog(NULL, "offset1=0x%04"PRIx64" offset2=0x%04%"PRIx64"\n", offset1, offset2);
 | 
				
			||||||
                pos += 4;
 | 
					                pos += 4;
 | 
				
			||||||
                break;
 | 
					                break;
 | 
				
			||||||
            case 0x86:
 | 
					            case 0x86:
 | 
				
			||||||
@@ -326,7 +326,7 @@ static int decode_dvd_subtitles(DVDSubContext *ctx, AVSubtitle *sub_header,
 | 
				
			|||||||
                    goto fail;
 | 
					                    goto fail;
 | 
				
			||||||
                offset1 = AV_RB32(buf + pos);
 | 
					                offset1 = AV_RB32(buf + pos);
 | 
				
			||||||
                offset2 = AV_RB32(buf + pos + 4);
 | 
					                offset2 = AV_RB32(buf + pos + 4);
 | 
				
			||||||
                ff_dlog(NULL, "offset1=0x%04x offset2=0x%04x\n", offset1, offset2);
 | 
					                ff_dlog(NULL, "offset1=0x%04"PRIx64" offset2=0x%04"PRIx64"\n", offset1, offset2);
 | 
				
			||||||
                pos += 8;
 | 
					                pos += 8;
 | 
				
			||||||
                break;
 | 
					                break;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user