diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-09-29 22:14:25 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-30 00:08:20 +0200 |
commit | 0f68a2bc8b337a9c7c0716d4aece1f8c986046b0 (patch) | |
tree | cda549cef2f38a3891a2837c1cf07aec88a3560c | |
parent | e571305a71494af195891e314b05936f040f89d3 (diff) | |
download | ffmpeg-0f68a2bc8b337a9c7c0716d4aece1f8c986046b0.tar.gz |
g723_1_demuxer: rco is also a commonly used extension.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/g723_1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/g723_1.c b/libavformat/g723_1.c index 5ffd7c7619..19441a1b19 100644 --- a/libavformat/g723_1.c +++ b/libavformat/g723_1.c @@ -78,6 +78,6 @@ AVInputFormat ff_g723_1_demuxer = { NULL, g723_1_init, g723_1_read_packet, - .extensions = "tco", + .extensions = "tco,rco", .flags = AVFMT_GENERIC_INDEX }; |