Skip to content
Snippets Groups Projects
Commit 7b2dba1c authored by Marton Balint's avatar Marton Balint Committed by Michael Niedermayer
Browse files

dv: fix avpriv_dv_codec_profile with lowres > 0


Fixes ticket #44.

Signed-off-by: default avatarMarton Balint <cus@passwd.hu>
Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent 084bd109
No related branches found
No related tags found
No related merge requests found
......@@ -287,9 +287,9 @@ const DVprofile* avpriv_dv_codec_profile(AVCodecContext* codec)
int i;
for (i=0; i<FF_ARRAY_ELEMS(dv_profiles); i++)
if (codec->height == dv_profiles[i].height &&
codec->pix_fmt == dv_profiles[i].pix_fmt &&
codec->width == dv_profiles[i].width)
if (codec->coded_height == dv_profiles[i].height &&
codec->pix_fmt == dv_profiles[i].pix_fmt &&
codec->coded_width == dv_profiles[i].width)
return &dv_profiles[i];
return NULL;
......
......@@ -251,10 +251,8 @@ 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){
avctx->width = c->sys->width;
avctx->height = c->sys->height;
}
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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment