Index: trunk/ippTools/src/dettool.c
===================================================================
--- trunk/ippTools/src/dettool.c	(revision 7145)
+++ trunk/ippTools/src/dettool.c	(revision 7146)
@@ -14,4 +14,5 @@
 static bool addstacMode(pxConfig *config);
 static bool stacMode(pxConfig *config);
+static bool stacframeMode(pxConfig *config);
 
 static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id);
@@ -50,4 +51,9 @@
         case DETTOOL_MODE_STACKED:
             if (!stacMode(config)) {
+                goto FAIL;
+            }
+            break;
+        case DETTOOL_MODE_STACKEDFRAME:
+            if (!stacframeMode(config)) {
                 goto FAIL;
             }
@@ -429,2 +435,9 @@
     return true;
 }
+
+static bool stacframeMode(pxConfig *config)
+{
+    PS_ASSERT_PTR_NON_NULL(config, false);
+
+    return true;
+}
