diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-11-22 18:47:05 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-11-22 18:47:05 +0000 |
commit | 6e8c46b7e3068aad5b9521eb6731c66172c76e31 (patch) | |
tree | a277f20d2184ace89228453a50ad3de705117a9c /libavformat/gxf.c | |
parent | 9ed0023447c3bbdf9a080cc386ce0ef7590a4195 (diff) | |
download | ffmpeg-6e8c46b7e3068aad5b9521eb6731c66172c76e31.tar.gz |
Set CODEC_TYPE_DATA for timecode tracks.
Originally committed as revision 7159 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/gxf.c')
-rw-r--r-- | libavformat/gxf.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/gxf.c b/libavformat/gxf.c index 186f61191e..897cdade0f 100644 --- a/libavformat/gxf.c +++ b/libavformat/gxf.c @@ -162,6 +162,13 @@ static int get_sindex(AVFormatContext *s, int id, int format) { st->codec->channels = 2; st->codec->sample_rate = 48000; break; + // timecode tracks: + case 7: + case 8: + case 24: + st->codec->codec_type = CODEC_TYPE_DATA; + st->codec->codec_id = CODEC_ID_NONE; + break; default: st->codec->codec_type = CODEC_TYPE_UNKNOWN; st->codec->codec_id = CODEC_ID_NONE; |