diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-28 02:02:48 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-11 12:09:08 +0200 |
commit | 89ef08c992c484a46711b1a68a988303679c288e (patch) | |
tree | a14b2c03d2c31183f9c72e5f688117b35cfbde2e /libavcodec/dnxhddata.c | |
parent | a7448064c526f097a47355e2ddb7722a06eeb5e3 (diff) | |
download | ffmpeg-89ef08c992c484a46711b1a68a988303679c288e.tar.gz |
DNxHD: K&R formatting cosmetics
Diffstat (limited to 'libavcodec/dnxhddata.c')
-rw-r--r-- | libavcodec/dnxhddata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dnxhddata.c b/libavcodec/dnxhddata.c index a8d713b45f..0edaeec98a 100644 --- a/libavcodec/dnxhddata.c +++ b/libavcodec/dnxhddata.c @@ -1165,7 +1165,7 @@ int ff_dnxhd_get_cid_table(int cid) int ff_dnxhd_find_cid(AVCodecContext *avctx, int bit_depth) { int i, j; - int mbs = avctx->bit_rate/1000000; + int mbs = avctx->bit_rate / 1000000; if (!mbs) return 0; for (i = 0; i < FF_ARRAY_ELEMS(ff_dnxhd_cid_table); i++) { |