projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bbe94af
)
Remove unused code + variable, fixes a warning.
author
Diego Biurrun
<diego@biurrun.de>
Tue, 24 Apr 2007 05:50:30 +0000
(
05:50
+0000)
committer
Diego Biurrun
<diego@biurrun.de>
Tue, 24 Apr 2007 05:50:30 +0000
(
05:50
+0000)
Originally committed as revision 8794 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/nutdec.c
patch
|
blob
|
history
diff --git
a/libavformat/nutdec.c
b/libavformat/nutdec.c
index 40bf9e2c7abefa193418693e42b1767b29a03751..8688f1971719422c148b0c6ee4e5474f2ebaf272 100644
(file)
--- a/
libavformat/nutdec.c
+++ b/
libavformat/nutdec.c
@@
-100,7
+100,7
@@
static inline uint64_t get_vb_trace(ByteIOContext *bc, char *file, char *func, i
static int get_packetheader(NUTContext *nut, ByteIOContext *bc, int calculate_checksum)
{
- int64_t s
tart, s
ize;
+ int64_t size;
// start= url_ftell(bc) - 8;
size= get_v(bc);
@@
-109,9
+109,6
@@
static int get_packetheader(NUTContext *nut, ByteIOContext *bc, int calculate_ch
init_checksum(bc, calculate_checksum ? av_crc04C11DB7_update : NULL, 0);
-// nut->packet_start[2] = start;
-// nut->written_packet_size= size;
-
return size;
}