aboutsummaryrefslogtreecommitdiffstats
path: root/libav/avienc.c
diff options
context:
space:
mode:
authorJuanjo <pulento@users.sourceforge.net>2002-05-02 04:21:22 +0000
committerJuanjo <pulento@users.sourceforge.net>2002-05-02 04:21:22 +0000
commit95c79a24e5429c510a7e17e84fc02b452060578c (patch)
treecfd53fef6fcd3cb1d34f7a067d22d408329be354 /libav/avienc.c
parente84c31dc88c883ca85d4ce52bcb882779695b861 (diff)
downloadffmpeg-95c79a24e5429c510a7e17e84fc02b452060578c.tar.gz
- Changed FOURCC for H263.
- Warnings fixes. Originally committed as revision 430 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/avienc.c')
-rw-r--r--libav/avienc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libav/avienc.c b/libav/avienc.c
index 52fdea237e..43482d0914 100644
--- a/libav/avienc.c
+++ b/libav/avienc.c
@@ -56,8 +56,8 @@ void end_tag(ByteIOContext *pb, offset_t start)
/* Note: when encoding, the first matching tag is used, so order is
important if multiple tags possible for a given codec. */
CodecTag codec_bmp_tags[] = {
- { CODEC_ID_H263, MKTAG('U', '2', '6', '3') },
- { CODEC_ID_H263P, MKTAG('U', '2', '6', '3') },
+ { CODEC_ID_H263, MKTAG('H', '2', '6', '3') },
+ { CODEC_ID_H263P, MKTAG('H', '2', '6', '3') },
{ CODEC_ID_H263I, MKTAG('I', '2', '6', '3') }, /* intel h263 */
{ CODEC_ID_MJPEG, MKTAG('M', 'J', 'P', 'G') },
{ CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', 'X') },