| 843 | } |
| 844 | |
| 845 | int DecoderStack::list_rows_size() |
| 846 | { |
| 847 | int rows_size = 0; |
| 848 | for (auto i = _rows.begin(); i != _rows.end(); i++) { |
| 849 | auto iter = _rows_lshow.find((*i).first); |
| 850 | if (iter != _rows_lshow.end() && (*iter).second) |
| 851 | rows_size++; |
| 852 | } |
| 853 | return rows_size; |
| 854 | } |
| 855 | |
| 856 | bool DecoderStack::options_changed() |
| 857 | { |