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:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-04-22 00:31:11 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-04-22 00:31:11 +0400
commit2f06b56382ddd4ae1bbe09fd07f6e7658bfece08 (patch)
treea7d2c59d3e835bb5f21e76b6ea10b5150ead887c /libavcodec/v210dec.h
parent6c0027bb3971dc9a06b5847c51a106e10c7b6fcb (diff)
Support broken v210 files with 64 byte padding.
Fixes ticket #743. Reviewed-by: Paul B Mahol
Diffstat (limited to 'libavcodec/v210dec.h')
-rw-r--r--libavcodec/v210dec.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/v210dec.h b/libavcodec/v210dec.h
index 48be729a5f..1f06f9eac9 100644
--- a/libavcodec/v210dec.h
+++ b/libavcodec/v210dec.h
@@ -26,6 +26,7 @@ typedef struct {
AVClass *av_class;
int custom_stride;
int aligned_input;
+ int stride_warning_shown;
void (*unpack_frame)(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width);
} V210DecContext;