summaryrefslogtreecommitdiffstats
path: root/libavcodec/dvdata.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-09-02 05:21:25 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-02 05:21:25 +0200
commit63d2cfd14250f2a0293cf130f37561b7f2ccf885 (patch)
tree7e9c49a6e3c6a96fcb1699b8fecd6050edd7df53 /libavcodec/dvdata.c
parentfea20d1ddc7bd5b059cae0a4a3c49c804eb4d7cb (diff)
downloadffmpeg-streaming-63d2cfd14250f2a0293cf130f37561b7f2ccf885.zip
ffmpeg-streaming-63d2cfd14250f2a0293cf130f37561b7f2ccf885.tar.gz
dvdec: Fix dvsd profile[1] detection.
Fixes Ticket159 If someone knows of a cleaner way to detect this, patch is welcome. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dvdata.c')
-rw-r--r--libavcodec/dvdata.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/libavcodec/dvdata.c b/libavcodec/dvdata.c
index 05993d8..03e8fcc 100644
--- a/libavcodec/dvdata.c
+++ b/libavcodec/dvdata.c
@@ -25,6 +25,7 @@
*/
#include "libavutil/rational.h"
+#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "dvdata.h"
@@ -245,7 +246,7 @@ static const DVprofile dv_profiles[] = {
}
};
-const DVprofile* ff_dv_frame_profile(const DVprofile *sys,
+const DVprofile* ff_dv_frame_profile2(AVCodecContext* codec, const DVprofile *sys,
const uint8_t* frame, unsigned buf_size)
{
int i;
@@ -259,6 +260,9 @@ const DVprofile* ff_dv_frame_profile(const DVprofile *sys,
return &dv_profiles[2];
}
+ if(codec && codec->codec_tag==AV_RL32("dvsd") && codec->width==720 && codec->height==576)
+ return &dv_profiles[1];
+
for (i=0; i<FF_ARRAY_ELEMS(dv_profiles); i++)
if (dsf == dv_profiles[i].dsf && stype == dv_profiles[i].video_stype)
return &dv_profiles[i];
@@ -270,6 +274,12 @@ const DVprofile* ff_dv_frame_profile(const DVprofile *sys,
return NULL;
}
+const DVprofile* ff_dv_frame_profile(const DVprofile *sys,
+ const uint8_t* frame, unsigned buf_size)
+{
+ return ff_dv_frame_profile2(NULL, sys, frame, buf_size);
+}
+
const DVprofile* ff_dv_codec_profile(AVCodecContext* codec)
{
int i;
OpenPOWER on IntegriCloud