summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2009-03-22 12:47:16 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2009-03-22 12:47:16 +0000
commite6b09f436112836383adcaf6fd975e2c73fe991b (patch)
tree02ce3574181a110f0190286325cb6222f18282be /libavformat
parentc21fbefb9d55b727ba04892d3c9238462d2d3f35 (diff)
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
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/rmdec.c5
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)
{