annotate libvo/img_format.c @ 3603:baa8b0c0ff30

Removed unnecessary check after the protocol autodetection. Now it will try to start streaming even if the autodetection failed. This will allow to work with web server that doesn't report a proper mime-type.
author bertrand
date Wed, 19 Dec 2001 09:02:52 +0000
parents 1632d6824a68
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3199
1632d6824a68 New ones
nick
parents: 2599
diff changeset
1 #include "img_format.h"
2599
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
2
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
3 char *vo_format_name(int format)
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
4 {
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
5 switch(format)
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
6 {
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
7 case IMGFMT_RGB8: return("RGB 8-bit");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
8 case IMGFMT_RGB15: return("RGB 15-bit");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
9 case IMGFMT_RGB16: return("RGB 16-bit");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
10 case IMGFMT_RGB24: return("RGB 24-bit");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
11 case IMGFMT_RGB32: return("RGB 32-bit");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
12 case IMGFMT_BGR8: return("BGR 8-bit");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
13 case IMGFMT_BGR15: return("BGR 15-bit");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
14 case IMGFMT_BGR16: return("BGR 16-bit");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
15 case IMGFMT_BGR24: return("BGR 24-bit");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
16 case IMGFMT_BGR32: return("BGR 32-bit");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
17 case IMGFMT_YVU9: return("Planar YVU9");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
18 case IMGFMT_IF09: return("Planar IF09");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
19 case IMGFMT_YV12: return("Planar YV12");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
20 case IMGFMT_I420: return("Planar I420");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
21 case IMGFMT_IYUV: return("Planar IYUV");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
22 case IMGFMT_CLPL: return("Planar CLPL");
3199
1632d6824a68 New ones
nick
parents: 2599
diff changeset
23 case IMGFMT_Y800: return("Planar Y800");
1632d6824a68 New ones
nick
parents: 2599
diff changeset
24 case IMGFMT_Y8: return("Planar Y8");
1632d6824a68 New ones
nick
parents: 2599
diff changeset
25 case IMGFMT_IUYV: return("Packed IUYV");
1632d6824a68 New ones
nick
parents: 2599
diff changeset
26 case IMGFMT_IY41: return("Packed IY41");
2599
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
27 case IMGFMT_IYU1: return("Packed IYU1");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
28 case IMGFMT_IYU2: return("Packed IYU2");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
29 case IMGFMT_UYVY: return("Packed UYVY");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
30 case IMGFMT_UYNV: return("Packed UYNV");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
31 case IMGFMT_cyuv: return("Packed CYUV");
3199
1632d6824a68 New ones
nick
parents: 2599
diff changeset
32 case IMGFMT_Y422: return("Packed Y422");
2599
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
33 case IMGFMT_YUY2: return("Packed YUY2");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
34 case IMGFMT_YUNV: return("Packed YUNV");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
35 case IMGFMT_YVYU: return("Packed YVYU");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
36 case IMGFMT_Y41P: return("Packed Y41P");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
37 case IMGFMT_Y211: return("Packed Y211");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
38 case IMGFMT_Y41T: return("Packed Y41T");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
39 case IMGFMT_Y42T: return("Packed Y42T");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
40 case IMGFMT_V422: return("Packed V422");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
41 case IMGFMT_V655: return("Packed V655");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
42 case IMGFMT_CLJR: return("Packed CLJR");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
43 case IMGFMT_YUVP: return("Packed YUVP");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
44 case IMGFMT_UYVP: return("Packed UYVP");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
45 case IMGFMT_MPEGPES: return("Mpeg PES");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
46 }
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
47 return("Unknown");
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
48 }