summaryrefslogtreecommitdiff
path: root/libavformat/dv.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-05-31 23:50:08 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-05-31 23:50:08 +0200
commit3c276ac0f8936745543d14674842647c502bdd2e (patch)
tree53f7ac608433992e6ca84687ca809563905a6565 /libavformat/dv.c
parent303619d3ca9efa0031f6fede7dedeb27fcfb1756 (diff)
dv-demux: dont mess with codec values
Fixes part of Ticket1369 Found-by: ami_stuff Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/dv.c')
-rw-r--r--libavformat/dv.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c
index 2ce928fa26..75b42b01ab 100644
--- a/libavformat/dv.c
+++ b/libavformat/dv.c
@@ -273,9 +273,6 @@ static int dv_extract_video_info(DVDemuxContext *c, uint8_t* frame)
avpriv_set_pts_info(c->vst, 64, c->sys->time_base.num,
c->sys->time_base.den);
avctx->time_base= c->sys->time_base;
- if (!avctx->width)
- avcodec_set_dimensions(avctx, c->sys->width, c->sys->height);
- avctx->pix_fmt = c->sys->pix_fmt;
/* finding out SAR is a little bit messy */
vsc_pack = dv_extract_pack(frame, dv_video_control);