diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-03-22 12:47:16 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-03-22 12:47:16 +0000 |
commit | e6b09f436112836383adcaf6fd975e2c73fe991b (patch) | |
tree | 02ce3574181a110f0190286325cb6222f18282be | |
parent | c21fbefb9d55b727ba04892d3c9238462d2d3f35 (diff) | |
download | ffmpeg-e6b09f436112836383adcaf6fd975e2c73fe991b.tar.gz |
Add a @todo with a comment from Kostya so we don't forget to optimize that at
some point in the future.
Originally committed as revision 18142 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/rmdec.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index ebd7fd247d..2dbe7bcc6d 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -658,7 +658,10 @@ rm_ac3_swap_bytes (AVStream *st, AVPacket *pkt) } } -/** perform 4-bit block reordering for SIPR data */ +/** + * Perform 4-bit block reordering for SIPR data. + * @todo This can be optimized, e.g. use memcpy() if data blocks are aligned + */ static void rm_reorder_sipr_data (RMStream *ast) { |