summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibaut Mattern <tmattern@users.sourceforge.net>2002-12-16 00:32:12 +0000
committerThibaut Mattern <tmattern@users.sourceforge.net>2002-12-16 00:32:12 +0000
commit254263d8c68a09db110e846f648f81ddcaa50761 (patch)
treeb32d59eb6f17b3984c14f95462c787b7434fb82f
parent9ceab657bdbefd7eb3b030cf8d3998c980d7d8a4 (diff)
downloadxine-lib-254263d8c68a09db110e846f648f81ddcaa50761.tar.gz
xine-lib-254263d8c68a09db110e846f648f81ddcaa50761.tar.bz2
Reenables width hack.
CVS patchset: 3553 CVS date: 2002/12/16 00:32:12
-rw-r--r--src/libffmpeg/xine_decoder.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libffmpeg/xine_decoder.c b/src/libffmpeg/xine_decoder.c
index 5c21e7f52..beae4dc07 100644
--- a/src/libffmpeg/xine_decoder.c
+++ b/src/libffmpeg/xine_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_decoder.c,v 1.76 2002/12/08 22:24:28 miguelfreitas Exp $
+ * $Id: xine_decoder.c,v 1.77 2002/12/16 00:32:12 tmattern Exp $
*
* xine decoder plugin using ffmpeg
*
@@ -116,12 +116,10 @@ static pthread_once_t once_control = PTHREAD_ONCE_INIT;
static void init_video_codec (ff_video_decoder_t *this, AVCodec *codec, xine_bmiheader *bih) {
-#if 0 /* now we have strides, i don't think this is needed anymore */
/* force (width % 8 == 0), otherwise there will be
* display problems with Xv.
*/
this->bih.biWidth = (this->bih.biWidth + 7) & (~7);
-#endif
this->av_picture = avcodec_alloc_picture();
this->context = avcodec_alloc_context();