[Tex/LaTex] Subfigure vertical alignment

floats

I have several subfigures in a figure. There is one image that has a much lower vertical width than the others and it is placed at the bottom of the subfigure region. Also the caption is placed below both figures(I have a nx2 grid). How can I align/center a subfigure vertically with respect to the others and how can I get the caption to apply only the subfigure it is in?

X-------X
|       |
| Fig 1 |   X-------X
|       |   | Fig 2 | 
X-------X   X-------X
    Fig 2 caption 

But I would like

X-------X
|       |   X-------X
| Fig 1 |   | Fig 2 | 
|       |   X-------X
X-------X  Fig 2 caption

Best Answer

Perhaps something like this.

enter image description here

\documentclass{article}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\begin{document}
\begin{figure}
\includegraphics[width=.4\linewidth,valign=c]{example-image-10x16} %valign key is from adjustbox
\begin{minipage}{.5\linewidth}
\centering
\includegraphics[width=.8\linewidth]{example-image}
\caption{Bla bla}
\end{minipage}
\end{figure}
\end{document}