changeset 1390:39d07c0263de libavcodec

patch for flv deblocking by (Garrick Meeker <gmeeker at theoryllc dot com>)
author michaelni
date Tue, 29 Jul 2003 09:58:47 +0000
parents da0b3a50d209
children fd48c92213ae
files h263.c
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/h263.c	Tue Jul 29 02:09:12 2003 +0000
+++ b/h263.c	Tue Jul 29 09:58:47 2003 +0000
@@ -51,8 +51,6 @@
 #ifdef CONFIG_ENCODERS
 static void h263_encode_block(MpegEncContext * s, DCTELEM * block,
                               int n);
-static void h263_flv_encode_block(MpegEncContext * s, DCTELEM * block,
-                                  int n);
 static void h263_encode_motion(MpegEncContext * s, int val, int fcode);
 static void h263p_encode_umotion(MpegEncContext * s, int val);
 static inline void mpeg4_encode_block(MpegEncContext * s, DCTELEM * block,
@@ -185,7 +183,7 @@
         put_bits(&s->pb, 16, s->height);
       }
       put_bits(&s->pb, 2, s->pict_type == P_TYPE); /* PictureType */
-      put_bits(&s->pb, 1, 0); /* DeblockingFlag: off */
+      put_bits(&s->pb, 1, 1); /* DeblockingFlag: on */
       put_bits(&s->pb, 5, s->qscale); /* Quantizer */
       put_bits(&s->pb, 1, 0); /* ExtraInformation */