]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/svq1.c
remove impossible condition from msrle_decode_pal4()
[ffmpeg] / libavcodec / svq1.c
index 790bbb3b743382d4a9e539b4f15f57661434f79f..d0e113267b865563fab5f175e25dc8d5a844f100 100644 (file)
@@ -26,7 +26,7 @@
  */
 
 /**
- * @file svq1.c
+ * @file
  * Sorenson Vector Quantizer #1 (SVQ1) video codec.
  * For more information of the SVQ1 algorithm, visit:
  *   http://www.pcisys.net/~melanson/codecs/
@@ -37,7 +37,7 @@
 #include "svq1_vlc.h"
 
 /* standard video sizes */
-const struct svq1_frame_size ff_svq1_frame_size_table[8] = {
+const struct svq1_frame_size ff_svq1_frame_size_table[7] = {
   { 160, 120 }, { 128,  96 }, { 176, 144 }, { 352, 288 },
-  { 704, 576 }, { 240, 180 }, { 320, 240 }, {  -1,  -1 }
+  { 704, 576 }, { 240, 180 }, { 320, 240 }
 };