diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-02-21 10:15:08 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-02-21 10:15:08 +0000 |
commit | 0afd2a92bd1172b4a7358e410e6f3d261874489e (patch) | |
tree | b06a77a3df8e706ca2eb545785083f2d59c5dc0a /libavcodec/oggvorbis.c | |
parent | 0e3b6a6f55eaa060166ab4f02f4d22cfc75d8d27 (diff) | |
download | ffmpeg-0afd2a92bd1172b4a7358e410e6f3d261874489e.tar.gz |
cosmetics: Fix a common typo, sepErate --> sepArate.
Originally committed as revision 8047 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/oggvorbis.c')
-rw-r--r-- | libavcodec/oggvorbis.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/oggvorbis.c b/libavcodec/oggvorbis.c index 9e684a0f49..da97e9a78e 100644 --- a/libavcodec/oggvorbis.c +++ b/libavcodec/oggvorbis.c @@ -159,7 +159,9 @@ static int oggvorbis_encode_frame(AVCodecContext *avccontext, vorbis_bitrate_addblock(&context->vb) ; while(vorbis_bitrate_flushpacket(&context->vd, &op)) { - if(op.bytes==1) //id love to say this is a hack, bad sadly its not, appearently the end of stream decission is in libogg + /* 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) continue; memcpy(context->buffer + context->buffer_index, &op, sizeof(ogg_packet)); context->buffer_index += sizeof(ogg_packet); |