mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-11 03:32:39 +00:00
swr: replace deprecated av_opt_set_defaults2() with av_opt_set_defaults().
This commit is contained in:
parent
180aa82c1d
commit
ad561b5707
@ -77,7 +77,7 @@ SwrContext *swr_alloc(void){
|
|||||||
SwrContext *s= av_mallocz(sizeof(SwrContext));
|
SwrContext *s= av_mallocz(sizeof(SwrContext));
|
||||||
if(s){
|
if(s){
|
||||||
s->av_class= &av_class;
|
s->av_class= &av_class;
|
||||||
av_opt_set_defaults2(s, 0, 0);
|
av_opt_set_defaults(s);
|
||||||
}
|
}
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user