Mercurial > libavformat.hg
changeset 2035:43de2eae6c69 libavformat
Remove unused code + variable, fixes a warning.
author | diego |
---|---|
date | Tue, 24 Apr 2007 05:50:30 +0000 |
parents | 355147fa5c72 |
children | 1ef7c49bd9d1 |
files | nutdec.c |
diffstat | 1 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/nutdec.c Sun Apr 22 18:48:07 2007 +0000 +++ b/nutdec.c Tue Apr 24 05:50:30 2007 +0000 @@ -100,7 +100,7 @@ static int get_packetheader(NUTContext *nut, ByteIOContext *bc, int calculate_checksum) { - int64_t start, size; + int64_t size; // start= url_ftell(bc) - 8; size= get_v(bc); @@ -109,9 +109,6 @@ init_checksum(bc, calculate_checksum ? av_crc04C11DB7_update : NULL, 0); -// nut->packet_start[2] = start; -// nut->written_packet_size= size; - return size; }