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:
6d9872f
)
* Add default cases to switch statements.
author
Philip Gladstone
<philipjsg@users.sourceforge.net>
Thu, 9 May 2002 01:16:08 +0000
(
01:16
+0000)
committer
Philip Gladstone
<philipjsg@users.sourceforge.net>
Thu, 9 May 2002 01:16:08 +0000
(
01:16
+0000)
Originally committed as revision 460 to svn://svn.ffmpeg.org/ffmpeg/trunk
libav/avienc.c
patch
|
blob
|
history
diff --git
a/libav/avienc.c
b/libav/avienc.c
index
43482d0
..
2290600
100644
(file)
--- a/
libav/avienc.c
+++ b/
libav/avienc.c
@@
-247,6
+247,8
@@
static int avi_write_header(AVFormatContext *s)
put_le32(pb, 0);
put_le32(pb, 0);
break;
+ default:
+ abort();
}
end_tag(pb, strh);
@@
-261,6
+263,8
@@
static int avi_write_header(AVFormatContext *s)
return -1;
}
break;
+ default:
+ abort();
}
end_tag(pb, strf);
end_tag(pb, list2);