comparison avcodec.h @ 1315:6696d3bf4ff2 libavcodec

lossless mjpeg encoding (planar yuv & RGB) and somerelated bugfixes
author michaelni
date Tue, 17 Jun 2003 22:48:51 +0000
parents 799839d1e2e1
children cca26199ab17
comparison
equal deleted inserted replaced
1314:8a7be8c2710e 1315:6696d3bf4ff2
29 CODEC_ID_MP3LAME, 29 CODEC_ID_MP3LAME,
30 CODEC_ID_VORBIS, 30 CODEC_ID_VORBIS,
31 CODEC_ID_AC3, 31 CODEC_ID_AC3,
32 CODEC_ID_MJPEG, 32 CODEC_ID_MJPEG,
33 CODEC_ID_MJPEGB, 33 CODEC_ID_MJPEGB,
34 CODEC_ID_LJPEG,
34 CODEC_ID_MPEG4, 35 CODEC_ID_MPEG4,
35 CODEC_ID_RAWVIDEO, 36 CODEC_ID_RAWVIDEO,
36 CODEC_ID_MSMPEG4V1, 37 CODEC_ID_MSMPEG4V1,
37 CODEC_ID_MSMPEG4V2, 38 CODEC_ID_MSMPEG4V2,
38 CODEC_ID_MSMPEG4V3, 39 CODEC_ID_MSMPEG4V3,
96 PIX_FMT_YUV422, 97 PIX_FMT_YUV422,
97 PIX_FMT_RGB24, ///< Packed pixel, 3 bytes per pixel, RGBRGB... 98 PIX_FMT_RGB24, ///< Packed pixel, 3 bytes per pixel, RGBRGB...
98 PIX_FMT_BGR24, ///< Packed pixel, 3 bytes per pixel, BGRBGR... 99 PIX_FMT_BGR24, ///< Packed pixel, 3 bytes per pixel, BGRBGR...
99 PIX_FMT_YUV422P, ///< Planar YUV 4:2:2 (1 Cr & Cb sample per 2x1 Y samples) 100 PIX_FMT_YUV422P, ///< Planar YUV 4:2:2 (1 Cr & Cb sample per 2x1 Y samples)
100 PIX_FMT_YUV444P, ///< Planar YUV 4:4:4 (1 Cr & Cb sample per 1x1 Y samples) 101 PIX_FMT_YUV444P, ///< Planar YUV 4:4:4 (1 Cr & Cb sample per 1x1 Y samples)
101 PIX_FMT_RGBA32, ///< always stored in cpu endianness 102 PIX_FMT_RGBA32, ///< Packed pixel, 4 bytes per pixel, BGRABGRA...
102 PIX_FMT_YUV410P, ///< Planar YUV 4:1:0 (1 Cr & Cb sample per 4x4 Y samples) 103 PIX_FMT_YUV410P, ///< Planar YUV 4:1:0 (1 Cr & Cb sample per 4x4 Y samples)
103 PIX_FMT_YUV411P, ///< Planar YUV 4:1:1 (1 Cr & Cb sample per 4x1 Y samples) 104 PIX_FMT_YUV411P, ///< Planar YUV 4:1:1 (1 Cr & Cb sample per 4x1 Y samples)
104 PIX_FMT_RGB565, ///< always stored in cpu endianness 105 PIX_FMT_RGB565, ///< always stored in cpu endianness
105 PIX_FMT_RGB555, ///< always stored in cpu endianness, most significant bit to 1 106 PIX_FMT_RGB555, ///< always stored in cpu endianness, most significant bit to 1
106 PIX_FMT_GRAY8, 107 PIX_FMT_GRAY8,
1224 extern AVCodec mpeg1video_encoder; 1225 extern AVCodec mpeg1video_encoder;
1225 extern AVCodec h263_encoder; 1226 extern AVCodec h263_encoder;
1226 extern AVCodec h263p_encoder; 1227 extern AVCodec h263p_encoder;
1227 extern AVCodec rv10_encoder; 1228 extern AVCodec rv10_encoder;
1228 extern AVCodec mjpeg_encoder; 1229 extern AVCodec mjpeg_encoder;
1230 extern AVCodec ljpeg_encoder;
1229 extern AVCodec mpeg4_encoder; 1231 extern AVCodec mpeg4_encoder;
1230 extern AVCodec msmpeg4v1_encoder; 1232 extern AVCodec msmpeg4v1_encoder;
1231 extern AVCodec msmpeg4v2_encoder; 1233 extern AVCodec msmpeg4v2_encoder;
1232 extern AVCodec msmpeg4v3_encoder; 1234 extern AVCodec msmpeg4v3_encoder;
1233 extern AVCodec wmv1_encoder; 1235 extern AVCodec wmv1_encoder;