diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-02-28 21:02:22 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-02-29 14:54:24 -0500 |
commit | 1fe7c1be547b92ac9f0b7e6158d76b91eee170e2 (patch) | |
tree | 727b62bc1fa8fbaba650b033519901135ccd8af9 /libavcodec | |
parent | 94025d8a99e8eea72293850e23fffbb6d0c4aaef (diff) | |
download | ffmpeg-1fe7c1be547b92ac9f0b7e6158d76b91eee170e2.tar.gz |
libvorbis: remove unneeded e_o_s check
vorbis_bitrate_flushpacket() does not return any packets that should not be
output in the bitstream.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/libvorbis.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/libvorbis.c b/libavcodec/libvorbis.c index 6ae47cf81c..dba089253b 100644 --- a/libavcodec/libvorbis.c +++ b/libavcodec/libvorbis.c @@ -271,10 +271,6 @@ static int oggvorbis_encode_frame(AVCodecContext *avctx, unsigned char *packets, /* add any available packets to the output packet buffer */ while ((ret = vorbis_bitrate_flushpacket(&s->vd, &op)) == 1) { - /* i'd love to say the following line is a hack, but sadly it's - * not, apparently the end of stream decision is in libogg. */ - if (op.bytes == 1 && op.e_o_s) - continue; if (s->buffer_index + sizeof(ogg_packet) + op.bytes > BUFFER_SIZE) { av_log(avctx, AV_LOG_ERROR, "libvorbis: buffer overflow."); return -1; |