avformat/img2enc: simplify split planes extension selection.

This commit is contained in:
Clément Bœsch 2013-11-07 20:28:44 +01:00
parent 3e036d407d
commit 3bcd5c1e31
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
if (!img->split_planes || i+1 >= desc->nb_components)
break;
filename[strlen(filename) - 1] = ((int[]){'U','V','A','x'})[i];
filename[strlen(filename) - 1] = "UVAx"[i];
}
} else {
pb[0] = s->pb;