Commit 98f3b098 authored by Arpi's avatar Arpi

avcodec_find_encoder_by_name() patch by Alex

Originally committed as revision 237 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 627690b5
...@@ -230,6 +230,7 @@ void avcodec_init(void); ...@@ -230,6 +230,7 @@ void avcodec_init(void);
void register_avcodec(AVCodec *format); void register_avcodec(AVCodec *format);
AVCodec *avcodec_find_encoder(enum CodecID id); AVCodec *avcodec_find_encoder(enum CodecID id);
AVCodec *avcodec_find_encoder_by_name(const char *name);
AVCodec *avcodec_find_decoder(enum CodecID id); AVCodec *avcodec_find_decoder(enum CodecID id);
AVCodec *avcodec_find_decoder_by_name(const char *name); AVCodec *avcodec_find_decoder_by_name(const char *name);
void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode); void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode);
......
...@@ -155,6 +155,18 @@ AVCodec *avcodec_find_encoder(enum CodecID id) ...@@ -155,6 +155,18 @@ AVCodec *avcodec_find_encoder(enum CodecID id)
return NULL; return NULL;
} }
AVCodec *avcodec_find_encoder_by_name(const char *name)
{
AVCodec *p;
p = first_avcodec;
while (p) {
if (p->encode != NULL && strcmp(name,p->name) == 0)
return p;
p = p->next;
}
return NULL;
}
AVCodec *avcodec_find_decoder(enum CodecID id) AVCodec *avcodec_find_decoder(enum CodecID id)
{ {
AVCodec *p; AVCodec *p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment