diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-01-23 18:37:23 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-01-23 18:37:23 +0000 |
commit | 79a5b35c05cfa3c269560069ba142a0d7dc4bacc (patch) | |
tree | 2454da55d38c348ad6849010925980419c10fd06 | |
parent | a44b3c4da859efacddca3a58ecbc6ad477b929ed (diff) | |
download | ffmpeg-79a5b35c05cfa3c269560069ba142a0d7dc4bacc.tar.gz |
remove padding to 16bit code, i dont think this change can break anything and it makes the broken MPEG2-pub.avi from http://www.albx79.it/stuff/ playable other players arent that picky either ...
Originally committed as revision 7670 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avidec.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c index 276689dd5c..273c20b449 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -654,10 +654,6 @@ resync: if(!ast->remaining){ avi->stream_index= -1; ast->packet_size= 0; - if (size & 1) { - get_byte(pb); - size++; - } } return size; |