diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2010-03-12 23:34:30 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-03-12 23:34:30 +0000 |
commit | adae9fa65e69dd5ac1c5d411fcc66affb554c79b (patch) | |
tree | d2aad98aeccdbff81792eca82a998cb37733cfb1 /libavformat/rmdec.c | |
parent | 2325bdad7b67b1c8539ef6beebb99d3247f08669 (diff) | |
download | ffmpeg-adae9fa65e69dd5ac1c5d411fcc66affb554c79b.tar.gz |
export sipr_subpk_size for future use by matroska demuxer
Originally committed as revision 22490 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rmdec.c')
-rw-r--r-- | libavformat/rmdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index be01286695..a3f46abac2 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -79,7 +79,7 @@ static const unsigned char sipr_swaps[38][2] = { { 67, 83 }, { 77, 80 } }; -static const unsigned char sipr_subpk_size[4] = { 29, 19, 37, 20 }; +const unsigned char ff_sipr_subpk_size[4] = { 29, 19, 37, 20 }; static inline void get_strl(ByteIOContext *pb, char *buf, int buf_size, int len) { @@ -237,7 +237,7 @@ static int rm_read_audio_stream_info(AVFormatContext *s, ByteIOContext *pb, flavor); return -1; } - st->codec->block_align = sipr_subpk_size[flavor]; + st->codec->block_align = ff_sipr_subpk_size[flavor]; } else { if(sub_packet_size <= 0){ av_log(s, AV_LOG_ERROR, "sub_packet_size is invalid\n"); |