diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-22 18:32:45 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-22 18:32:45 +0000 |
commit | ec029a1034181e981b0ac834ae6a3a238a43bcc8 (patch) | |
tree | 55aebb635fb403b08fc1d49b9f127235e79de888 | |
parent | a8a8471995c5bb0fc655619ca04f29e1477429c9 (diff) |
100l, fix compilation.
Commited old patch that used alloc_put_byte instead of av_alloc_put_byte
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25506 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libmpdemux/demux_lavf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpdemux/demux_lavf.c b/libmpdemux/demux_lavf.c index 25bfb117bf..894b951e34 100644 --- a/libmpdemux/demux_lavf.c +++ b/libmpdemux/demux_lavf.c @@ -447,8 +447,8 @@ static demuxer_t* demux_open_lavf(demuxer_t *demuxer){ else strncpy(mp_filename + 3, "foobar.dummy", sizeof(mp_filename)-3); - priv->pb = alloc_put_byte(priv->buffer, BIO_BUFFER_SIZE, 0, - demuxer->stream, mp_read, NULL, mp_seek); + priv->pb = av_alloc_put_byte(priv->buffer, BIO_BUFFER_SIZE, 0, + demuxer->stream, mp_read, NULL, mp_seek); priv->pb->is_streamed = !demuxer->stream->end_pos; if(av_open_input_stream(&avfc, priv->pb, mp_filename, priv->avif, &ap)<0){ |