summaryrefslogtreecommitdiff
path: root/libavcodec/h264.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-12-07 13:03:53 +0100
committerDiego Biurrun <diego@biurrun.de>2011-12-12 23:06:23 +0100
commit58c42af722cebecd86e340dc3ed9ec44b1fe4a55 (patch)
tree9541c2a43eb2f181d670c04e200a6bd43ad8d4fc /libavcodec/h264.h
parent8b494b7b2773eb45c0ed364e346602de0d578196 (diff)
doxygen: misc consistency, spelling and wording fixes
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r--libavcodec/h264.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 5280e5155a..826b72018c 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -762,14 +762,14 @@ static av_always_inline uint16_t pack8to16(int a, int b){
}
/**
- * gets the chroma qp.
+ * Get the chroma qp.
*/
static av_always_inline int get_chroma_qp(H264Context *h, int t, int qscale){
return h->pps.chroma_qp_table[t][qscale];
}
/**
- * gets the predicted intra4x4 prediction mode.
+ * Get the predicted intra4x4 prediction mode.
*/
static av_always_inline int pred_intra_mode(H264Context *h, int n){
const int index8= scan8[n];