OSDN Git Service

return if bitrate is not specified or too low
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Sun, 1 Jun 2008 21:29:45 +0000 (21:29 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Sun, 1 Jun 2008 21:29:45 +0000 (21:29 +0000)
Originally committed as revision 13611 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/dnxhddata.c

index fa6d13f..c1f2671 100644 (file)
@@ -428,6 +428,8 @@ int ff_dnxhd_find_cid(AVCodecContext *avctx)
 {
     int i, j;
     int mbs = avctx->bit_rate/1000000;
+    if (!mbs)
+        return 0;
     for (i = 0; i < sizeof(ff_dnxhd_cid_table)/sizeof(CIDEntry); i++) {
         const CIDEntry *cid = &ff_dnxhd_cid_table[i];
         if (cid->width == avctx->width && cid->height == avctx->height &&