summaryrefslogtreecommitdiff
path: root/avconv.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-02-05 14:28:19 +0100
committerAnton Khirnov <anton@khirnov.net>2012-02-07 20:07:14 +0100
commitc9af8326238c37d1a1f0029a158c7ede33836aa3 (patch)
treee7ab8c9a6768392011a05e1723d10128e751e9d3 /avconv.c
parent4be1d7dc20e3f191917adab2bf7cd405f1d25b54 (diff)
avconv: set encoder timebase for subtitles.
The actual number (1/1000) will probably require some discussion/tweaking in the future, but should be good enough for now, since the timestamps in AVSubtitle are in this timebase by definition.
Diffstat (limited to 'avconv.c')
-rw-r--r--avconv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/avconv.c b/avconv.c
index 509b1dc249..876ad1996c 100644
--- a/avconv.c
+++ b/avconv.c
@@ -2434,6 +2434,7 @@ static int transcode_init(OutputFile *output_files,
#endif
break;
case AVMEDIA_TYPE_SUBTITLE:
+ codec->time_base = (AVRational){1, 1000};
break;
default:
abort();