diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-06-27 13:56:55 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-06-27 13:56:55 +0000 |
commit | 3a326908ee92ee5da7532be1f9dd69c716e2691f (patch) | |
tree | 1bb20c932399c08f4525ce7f17eb98ea9288b11a /src/libffmpeg/libavcodec | |
parent | baa6f650e082bdc60778630ace9dded2fa05bc75 (diff) | |
download | xine-lib-3a326908ee92ee5da7532be1f9dd69c716e2691f.tar.gz xine-lib-3a326908ee92ee5da7532be1f9dd69c716e2691f.tar.bz2 |
apply patch from Bastien for ffmpeg silence
CVS patchset: 5109
CVS date: 2003/06/27 13:56:55
Diffstat (limited to 'src/libffmpeg/libavcodec')
-rw-r--r-- | src/libffmpeg/libavcodec/h263.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libffmpeg/libavcodec/h263.c b/src/libffmpeg/libavcodec/h263.c index 5b3119ac9..7fe89f7bc 100644 --- a/src/libffmpeg/libavcodec/h263.c +++ b/src/libffmpeg/libavcodec/h263.c @@ -4606,6 +4606,7 @@ static int decode_user_data(MpegEncContext *s, GetBitContext *gb){ s->divx_version= ver; s->divx_build= build; s->divx_packed= e==3 && last=='p'; +#if 0 if(s->picture_number==0){ printf("This file was encoded with DivX%d Build%d", ver, build); if(s->divx_packed) @@ -4613,6 +4614,7 @@ static int decode_user_data(MpegEncContext *s, GetBitContext *gb){ else printf("\n"); } +#endif } /* ffmpeg detection */ @@ -4628,16 +4630,20 @@ static int decode_user_data(MpegEncContext *s, GetBitContext *gb){ if(e==4){ s->ffmpeg_version= ver*256*256 + ver2*256 + ver3; s->lavc_build= build; +#if 0 if(s->picture_number==0) printf("This file was encoded with libavcodec build %d\n", build); +#endif } /* xvid detection */ e=sscanf(buf, "XviD%d", &build); if(e==1){ s->xvid_build= build; +#if 0 if(s->picture_number==0) printf("This file was encoded with XviD build %d\n", build); +#endif } //printf("User Data: %s\n", buf); |