mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Remove pointless setting of pkt->size, av_get_packet already handles this.
Originally committed as revision 20128 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b46c98bf66
commit
d4c1803e0e
@ -123,9 +123,6 @@ static int raw_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
if (ret <= 0) {
|
||||
return AVERROR(EIO);
|
||||
}
|
||||
/* note: we need to modify the packet size here to handle the last
|
||||
packet */
|
||||
pkt->size = ret;
|
||||
|
||||
bps= av_get_bits_per_sample(s->streams[0]->codec->codec_id);
|
||||
assert(bps); // if false there IS a bug elsewhere (NOT in this function)
|
||||
|
Loading…
Reference in New Issue
Block a user