summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-12-18 02:46:42 +0100
committerClément Bœsch <ubitux@gmail.com>2012-12-18 02:47:34 +0100
commit8b63744f483e1f5a5d4f439fc1bbd858232ed581 (patch)
tree26645dc06617d696882fc784ed48df55731f8df3 /libavcodec
parent1dd33d472a608daba459b628c170e89d796f1795 (diff)
Fix "bistream" typo and add a check in tools/patcheck.
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/h263dec.c2
-rw-r--r--libavcodec/rv34.c2
-rw-r--r--libavcodec/vda_h264.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 27e1c91cb6..0232aa4c9d 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -709,7 +709,7 @@ retry:
av_assert1(s->bitstream_buffer_size==0);
frame_end:
- /* divx 5.01+ bistream reorder stuff */
+ /* divx 5.01+ bitstream reorder stuff */
if(s->codec_id==AV_CODEC_ID_MPEG4 && s->divx_packed){
int current_pos= s->gb.buffer == s->bitstream_buffer ? 0 : (get_bits_count(&s->gb)>>3);
int startcode_found=0;
diff --git a/libavcodec/rv34.c b/libavcodec/rv34.c
index 6527252567..d91e40af52 100644
--- a/libavcodec/rv34.c
+++ b/libavcodec/rv34.c
@@ -215,7 +215,7 @@ static int rv34_decode_cbp(GetBitContext *gb, RV34VLC *vlc, int table)
}
/**
- * Get one coefficient value from the bistream and store it.
+ * Get one coefficient value from the bitstream and store it.
*/
static inline void decode_coeff(DCTELEM *dst, int coef, int esc, GetBitContext *gb, VLC* vlc, int q)
{
diff --git a/libavcodec/vda_h264.c b/libavcodec/vda_h264.c
index 89960d7d0a..0d8335d5c7 100644
--- a/libavcodec/vda_h264.c
+++ b/libavcodec/vda_h264.c
@@ -285,7 +285,7 @@ int ff_vda_create_decoder(struct vda_context *vda_ctx,
pthread_mutex_init(&vda_ctx->queue_mutex, NULL);
#endif
- /* Each VCL NAL in the bistream sent to the decoder
+ /* Each VCL NAL in the bitstream sent to the decoder
* is preceded by a 4 bytes length header.
* Change the avcC atom header if needed, to signal headers of 4 bytes. */
if (extradata_size >= 4 && (extradata[4] & 0x03) != 0x03) {