diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-12-16 21:30:27 +0100 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2013-05-18 07:12:56 +0200 |
commit | 350914fc8024612f614c0a4f5c8ba5da2d9988e7 (patch) | |
tree | acdd7ee0a89e1c985642b2e5178a2c0f023e4641 /libavformat/rpl.c | |
parent | cebdedca57d95834a8f8098c7b6a322a1163e26b (diff) | |
download | ffmpeg-350914fc8024612f614c0a4f5c8ba5da2d9988e7.tar.gz |
Escape 130 (RPL) decoder
Some fixes provided by Paul B Mahol <onemda@gmail.com>
and Michael Niedermayer <michaelni@gmx.at> and me.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
Diffstat (limited to 'libavformat/rpl.c')
-rw-r--r-- | libavformat/rpl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/rpl.c b/libavformat/rpl.c index a5b1e6ec69..42b47f8457 100644 --- a/libavformat/rpl.c +++ b/libavformat/rpl.c @@ -164,11 +164,9 @@ static int rpl_read_header(AVFormatContext *s) // The header is wrong here, at least sometimes vst->codec->bits_per_coded_sample = 16; break; -#if 0 case 130: vst->codec->codec_id = AV_CODEC_ID_ESCAPE130; break; -#endif default: av_log(s, AV_LOG_WARNING, "RPL video format %i not supported yet!\n", |