projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b398777
)
dont return -1 if mpeg4 scalability ...
author
Michael Niedermayer
<michaelni@gmx.at>
Sat, 23 Mar 2002 13:00:08 +0000
(13:00 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Sat, 23 Mar 2002 13:00:08 +0000
(13:00 +0000)
Originally committed as revision 353 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/h263.c
patch
|
blob
|
history
diff --git
a/libavcodec/h263.c
b/libavcodec/h263.c
index
e7f8b0b
..
2b6400f
100644
(file)
--- a/
libavcodec/h263.c
+++ b/
libavcodec/h263.c
@@
-2259,8
+2259,7
@@
int mpeg4_decode_picture_header(MpegEncContext * s)
s->scalability= get_bits1(&s->gb);
if (s->scalability) {
- printf("bad scalability!!!\n");
- return -1;
+ printf("scalability not supported\n");
}
}
//printf("end Data %X %d\n", show_bits(&s->gb, 32), get_bits_count(&s->gb)&0x7);