Displaying 1 result from an estimated 1 matches for "frameheader".
Did you mean:
frame_header
2003 Jun 09
2
[PATCH] Fix for YUV4MPEG support in encoder_example
...Mon Jun
9 07:18:01 2003
+++ xiph-cvs-new/theora/examples/encoder_example.c Mon Jun
9 21:41:03 2003
@@ -375,11 +375,33 @@
for(i=state;i<2;i++){
char frame[6];
int ret=fread(frame,1,6,video);
-
+
+ /*
+ yuv4mpeg specs say this:
+
+ FRAMEHEADER consists of
+ string "FRAME " (note the space after the 'E')
+ unlimited number of ' ' (single space) separated TAGGEDFIELDs
+ single 'n' line terminator
+
+ ( http://roguelife.org/~fujita/MJPEG/yuv4mpeg.html )
+ MPlaye...