Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKieran Kunhya <kierank@ob-encoder.com>2015-12-09 16:43:29 +0300
committerRostislav Pehlivanov <atomnuker@gmail.com>2015-12-10 19:52:48 +0300
commit9553689854d61069ae3467f9b46dac43ee991d96 (patch)
tree5ffa192587ce0ac4c4d1c31654308bf2150e14aa /libavcodec/dirac.h
parentbd3409f52a05088aee5f9068b7d0ab66191a66b5 (diff)
diracdec: Move strides to bytes, and pointer types to uint8_t.
Start templating functions for move to support 10-bit Parts of this patch were written by Rostislav Pehlivanov
Diffstat (limited to 'libavcodec/dirac.h')
-rw-r--r--libavcodec/dirac.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dirac.h b/libavcodec/dirac.h
index b0f955bf46..14653f1dc2 100644
--- a/libavcodec/dirac.h
+++ b/libavcodec/dirac.h
@@ -55,6 +55,7 @@ typedef struct dirac_source_params {
} dirac_source_params;
int avpriv_dirac_parse_sequence_header(AVCodecContext *avctx, GetBitContext *gb,
- dirac_source_params *source);
+ dirac_source_params *source,
+ int *bit_depth);
#endif /* AVCODEC_DIRAC_H */