AtiQah-FC / lavfilters

Automatically exported from code.google.com/p/lavfilters
GNU General Public License v2.0
0 stars 0 forks source link

Support for Streaming Network protocols #180

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Describe the issue you're having:
Streaming protocols should be supported.

Following protocols can be considered:

- RTSP
- MMS
- RTMP (complicated, external lib)

How can the issue be reproduced? Sample File?

Implementation Notes:

Original issue reported on code.google.com by h.lepp...@gmail.com on 1 Feb 2012 at 12:29

GoogleCodeExporter commented 9 years ago
LAV now supports RTSP, MMSH/MMST and RTP. Hooray.

Original comment by h.lepp...@gmail.com on 3 Feb 2012 at 7:13

GoogleCodeExporter commented 9 years ago
Yay!
Just one question... You changed the array to [4100] but kept 4096 for the 
MultiByte buffer size. Should it be that way?

" 
char fileName[4100] = {0};
if (pszFileName) {  
ret = WideCharToMultiByte(CP_UTF8, 0, pszFileName, -1, fileName, 4096, NULL, 
NULL);    }
"

Original comment by magnus.a...@gmail.com on 3 Feb 2012 at 9:21

GoogleCodeExporter commented 9 years ago
Yes, i wanted some extra padding for the code that comes below it.

Original comment by h.lepp...@gmail.com on 3 Feb 2012 at 9:22

GoogleCodeExporter commented 9 years ago
All the "easy" formats are supported now.
I'm not yet willing to start supporting RTMP because of its external dependency 
and the complexity this will bring.

Therefor, fixed.

Original comment by h.lepp...@gmail.com on 4 Feb 2012 at 7:18