diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-05-01 19:59:29 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-05-01 23:20:52 +0200 |
commit | 8f63f241d499a01d086874af36801167b72b7036 (patch) | |
tree | 1ff0d94ac5bcb721d7ab4454ee1244610b88e623 /libavformat/soxdec.c | |
parent | 7effbee66cf457c62f795d9b9ed3a1110b364b89 (diff) | |
download | ffmpeg-8f63f241d499a01d086874af36801167b72b7036.tar.gz |
Remove some useless code that duplicates av_get_packet.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavformat/soxdec.c')
-rw-r--r-- | libavformat/soxdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/soxdec.c b/libavformat/soxdec.c index a0b65d9160..46b07b73c8 100644 --- a/libavformat/soxdec.c +++ b/libavformat/soxdec.c @@ -140,7 +140,6 @@ static int sox_read_packet(AVFormatContext *s, return AVERROR(EIO); pkt->flags &= ~AV_PKT_FLAG_CORRUPT; pkt->stream_index = 0; - pkt->size = ret; return 0; } |