summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2005-06-17 15:02:53 +0000
committerDiego Biurrun <diego@biurrun.de>2005-06-17 15:02:53 +0000
commitbb628dae442f85fc8814d7c60c744a409fa001ab (patch)
treed91864ccb8c065a7fc9a95829632a911e654a7f3 /libavcodec/h263.c
parent36940eca762ea3ad77135c95230af65da74a56a6 (diff)
spelling fixes
patch by Peter Robinson pbrobinson @ at @ gmail . dot . com and myself Originally committed as revision 4382 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r--libavcodec/h263.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index 28d638092c..7dc0467322 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -245,10 +245,10 @@ void h263_encode_picture_header(MpegEncContext * s, int picture_number)
/* By now UMV IS DISABLED ON H.263v1, since the restrictions
of H.263v1 UMV implies to check the predicted MV after
calculation of the current MB to see if we're on the limits */
- put_bits(&s->pb, 1, 0); /* unrestricted motion vector: off */
+ put_bits(&s->pb, 1, 0); /* Unrestricted Motion Vector: off */
put_bits(&s->pb, 1, 0); /* SAC: off */
- put_bits(&s->pb, 1, s->obmc); /* advanced prediction mode */
- put_bits(&s->pb, 1, 0); /* not PB frame */
+ put_bits(&s->pb, 1, s->obmc); /* Advanced Prediction */
+ put_bits(&s->pb, 1, 0); /* only I/P frames, no PB frame */
put_bits(&s->pb, 5, s->qscale);
put_bits(&s->pb, 1, 0); /* Continuous Presence Multipoint mode: off */
} else {