lavc: stop using deprecated av_codec_next()
Signed-off-by: Josh de Kock <josh@itanimul.li>
This commit is contained in:
parent
4cde83c780
commit
bd2e7b74e1
@ -55,15 +55,16 @@ static void *codec_child_next(void *obj, void *prev)
|
||||
|
||||
static const AVClass *codec_child_class_next(const AVClass *prev)
|
||||
{
|
||||
AVCodec *c = NULL;
|
||||
void *iter = NULL;
|
||||
const AVCodec *c = NULL;
|
||||
|
||||
/* find the codec that corresponds to prev */
|
||||
while (prev && (c = av_codec_next(c)))
|
||||
while (prev && (c = av_codec_iterate(&iter)))
|
||||
if (c->priv_class == prev)
|
||||
break;
|
||||
|
||||
/* find next codec with priv options */
|
||||
while (c = av_codec_next(c))
|
||||
while (c = av_codec_iterate(&iter))
|
||||
if (c->priv_class)
|
||||
return c->priv_class;
|
||||
return NULL;
|
||||
|
@ -19,10 +19,11 @@
|
||||
#include "libavcodec/avcodec.h"
|
||||
|
||||
int main(void){
|
||||
AVCodec *codec = NULL;
|
||||
void *iter = NULL;
|
||||
const AVCodec *codec = NULL;
|
||||
int ret = 0;
|
||||
|
||||
while (codec = av_codec_next(codec)) {
|
||||
while (codec = av_codec_iterate(&iter)) {
|
||||
if (av_codec_is_encoder(codec)) {
|
||||
if (codec->type == AVMEDIA_TYPE_AUDIO) {
|
||||
if (!codec->sample_fmts) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user