diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-06-18 11:43:24 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-19 17:02:11 +0200 |
commit | 3b3bbdd3e63a3a1eaf69b861f72cf74f1669afe1 (patch) | |
tree | 47e04e8b1061f9ea8563fd46bf94a52e438253b3 /libavformat/rawdec.c | |
parent | 569129a6dc503379c0486008224dfaff8f0ee81f (diff) | |
download | ffmpeg-3b3bbdd3e63a3a1eaf69b861f72cf74f1669afe1.tar.gz |
lavf,lavd: replace av_new_stream->avformat_new_stream part I.
Trivial replacements with sed are done in this commit:
sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/'
Diffstat (limited to 'libavformat/rawdec.c')
-rw-r--r-- | libavformat/rawdec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rawdec.c b/libavformat/rawdec.c index c4c027ab06..fb3336d37c 100644 --- a/libavformat/rawdec.c +++ b/libavformat/rawdec.c @@ -33,7 +33,7 @@ int ff_raw_read_header(AVFormatContext *s, AVFormatParameters *ap) AVStream *st; enum CodecID id; - st = av_new_stream(s, 0); + st = avformat_new_stream(s, NULL); if (!st) return AVERROR(ENOMEM); @@ -122,7 +122,7 @@ int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt) int ff_raw_audio_read_header(AVFormatContext *s, AVFormatParameters *ap) { - AVStream *st = av_new_stream(s, 0); + AVStream *st = avformat_new_stream(s, NULL); if (!st) return AVERROR(ENOMEM); st->codec->codec_type = AVMEDIA_TYPE_AUDIO; @@ -143,7 +143,7 @@ int ff_raw_video_read_header(AVFormatContext *s, int ret = 0; - st = av_new_stream(s, 0); + st = avformat_new_stream(s, NULL); if (!st) { ret = AVERROR(ENOMEM); goto fail; |