mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
avio: rename ByteIOContext to AVIOContext.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit ae628ec1fd)
This commit is contained in:
parent
a8858ee11c
commit
471fe57e1a
140 changed files with 854 additions and 850 deletions
|
|
@ -77,7 +77,7 @@ static int film_read_header(AVFormatContext *s,
|
|||
AVFormatParameters *ap)
|
||||
{
|
||||
FilmDemuxContext *film = s->priv_data;
|
||||
ByteIOContext *pb = s->pb;
|
||||
AVIOContext *pb = s->pb;
|
||||
AVStream *st;
|
||||
unsigned char scratch[256];
|
||||
int i;
|
||||
|
|
@ -205,7 +205,7 @@ static int film_read_packet(AVFormatContext *s,
|
|||
AVPacket *pkt)
|
||||
{
|
||||
FilmDemuxContext *film = s->priv_data;
|
||||
ByteIOContext *pb = s->pb;
|
||||
AVIOContext *pb = s->pb;
|
||||
film_sample *sample;
|
||||
int ret = 0;
|
||||
int i;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue