summaryrefslogtreecommitdiff
path: root/libavcodec/ratecontrol.c
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2005-04-24 17:21:11 +0000
committerMike Melanson <mike@multimedia.cx>2005-04-24 17:21:11 +0000
commit160d679c075e9f575f96ea2c2c000545a49916a0 (patch)
tree5254d6f53383d530989b1fa99e72f6da3a391b27 /libavcodec/ratecontrol.c
parent93ccc14df57008117631e369ba2e846ef4950a16 (diff)
Ministry of English Composition, reporting for duty (and the word is "skipped", not "skiped"; "skiped" would rhyme with "hyped")
Originally committed as revision 4153 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ratecontrol.c')
-rw-r--r--libavcodec/ratecontrol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ratecontrol.c b/libavcodec/ratecontrol.c
index 19641d453d..94fca1ea47 100644
--- a/libavcodec/ratecontrol.c
+++ b/libavcodec/ratecontrol.c
@@ -79,7 +79,7 @@ int ff_rate_control_init(MpegEncContext *s)
rcc->entry = (RateControlEntry*)av_mallocz(i*sizeof(RateControlEntry));
rcc->num_entries= i;
- /* init all to skiped p frames (with b frames we might have a not encoded frame at the end FIXME) */
+ /* init all to skipped p frames (with b frames we might have a not encoded frame at the end FIXME) */
for(i=0; i<rcc->num_entries; i++){
RateControlEntry *rce= &rcc->entry[i];
rce->pict_type= rce->new_pict_type=P_TYPE;