Commit b04f49c7 authored by Diego Biurrun's avatar Diego Biurrun

Give names of external library decoders/encoders a lib prefix

in the ffmpeg/ffplay output.

Originally committed as revision 9227 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6f1af735
...@@ -248,7 +248,7 @@ static int a52_decode_end(AVCodecContext *avctx) ...@@ -248,7 +248,7 @@ static int a52_decode_end(AVCodecContext *avctx)
} }
AVCodec liba52_decoder = { AVCodec liba52_decoder = {
"ac3", "liba52",
CODEC_TYPE_AUDIO, CODEC_TYPE_AUDIO,
CODEC_ID_AC3, CODEC_ID_AC3,
sizeof(AC3DecodeState), sizeof(AC3DecodeState),
......
...@@ -84,7 +84,7 @@ static int libgsm_encode_frame(AVCodecContext *avctx, ...@@ -84,7 +84,7 @@ static int libgsm_encode_frame(AVCodecContext *avctx,
AVCodec libgsm_encoder = { AVCodec libgsm_encoder = {
"gsm", "libgsm",
CODEC_TYPE_AUDIO, CODEC_TYPE_AUDIO,
CODEC_ID_GSM, CODEC_ID_GSM,
0, 0,
...@@ -94,7 +94,7 @@ AVCodec libgsm_encoder = { ...@@ -94,7 +94,7 @@ AVCodec libgsm_encoder = {
}; };
AVCodec libgsm_ms_encoder = { AVCodec libgsm_ms_encoder = {
"gsm", "libgsm_ms",
CODEC_TYPE_AUDIO, CODEC_TYPE_AUDIO,
CODEC_ID_GSM_MS, CODEC_ID_GSM_MS,
0, 0,
...@@ -123,7 +123,7 @@ static int libgsm_decode_frame(AVCodecContext *avctx, ...@@ -123,7 +123,7 @@ static int libgsm_decode_frame(AVCodecContext *avctx,
} }
AVCodec libgsm_decoder = { AVCodec libgsm_decoder = {
"gsm", "libgsm",
CODEC_TYPE_AUDIO, CODEC_TYPE_AUDIO,
CODEC_ID_GSM, CODEC_ID_GSM,
0, 0,
...@@ -134,7 +134,7 @@ AVCodec libgsm_decoder = { ...@@ -134,7 +134,7 @@ AVCodec libgsm_decoder = {
}; };
AVCodec libgsm_ms_decoder = { AVCodec libgsm_ms_decoder = {
"gsm_ms", "libgsm_ms",
CODEC_TYPE_AUDIO, CODEC_TYPE_AUDIO,
CODEC_ID_GSM_MS, CODEC_ID_GSM_MS,
0, 0,
......
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