Displaying 1 result from an estimated 1 matches for "taggedfield".
Did you mean:
taggedfields
2003 Jun 09
2
[PATCH] Fix for YUV4MPEG support in encoder_example
...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 )
+ MPlayer 0.9.0 writes "FRAME" with no space at the end, however.
+ To deal with this....
+ */
+
if(ret<6)break;
if(memcmp(f...