forked from FFmpeg/FFmpeg
Fix streaming to XBox360.
Patch by Patric Stout, patric T liefdeis O com Original thread: Subject: asf-format doesn't work as stream for XBox360 Date: 2007-10-14 Originally committed as revision 10755 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
8a2d973dfc
commit
ed7b48b205
1 changed files with 4 additions and 1 deletions
|
@ -498,7 +498,10 @@ static int asf_write_header(AVFormatContext *s)
|
|||
asf->nb_index_count = 0;
|
||||
asf->maximum_packet = 0;
|
||||
|
||||
if (asf_write_header1(s, 0, 0) < 0) {
|
||||
/* the data-chunk-size has to be 50, which is data_size - asf->data_offset
|
||||
* at the moment this function is done. It is needed to use asf as
|
||||
* streamable format. */
|
||||
if (asf_write_header1(s, 0, 50) < 0) {
|
||||
//av_free(asf);
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue