>Hi, I'm streaming MPEG4 and use FFMPEG library to encode MPEG4 frames >from my own live source.
... >This means I should instead subclass MPEG4VideoStreamFramer and set the >pictureEndMarker everytime I have a complete frame? No, because the parser in "MPEG4VideoStreamFramer" should automatically do that for you. If your input is a byte stream, containing MPEG-4 Elementary Stream Video frames, then you don't need to write any new parsing code; "MPEG4VideoStreamFramer" will do it all for you. However, if your encoding library is generating one frame at a time, rather than a byte stream, then it will be more efficient for you to use "MPEG4VideoStreamDiscreteFramer" (taking as input one frame at a time) rather than "MPEG4VideoStreamFramer". -- Ross Finlayson Live Networks, Inc. http://www.live555.com/ _______________________________________________ live-devel mailing list [email protected] http://lists.live555.com/mailman/listinfo/live-devel
