woops, my bad :(

lgtm, thanks.

On Wed, Jan 21, 2015 at 8:09 AM, Luca Barbato <[email protected]> wrote:

> On 21/01/15 16:41, Martin Storsjö wrote:
>
>> From: Rodger Combs <[email protected]>
>>
>> Previously this always used the "lld" format for all parameters,
>> not only time parameters.
>> ---
>>   libavformat/dashenc.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
>> index 1432fc3..25fed12 100644
>> --- a/libavformat/dashenc.c
>> +++ b/libavformat/dashenc.c
>> @@ -282,7 +282,7 @@ static DASHTmplId dash_read_tmpl_id(const char
>> *identifier, char *format_tag,
>>           // next parse the dash format-tag and generate a c-string
>> format tag
>>           // (next_ptr now points at the first '%' at the beginning of
>> the format-tag)
>>           if (id_type != DASH_TMPL_ID_UNDEFINED) {
>> -            const char *number_format = DASH_TMPL_ID_TIME ? "lld" : "d";
>> +            const char *number_format = (id_type == DASH_TMPL_ID_TIME) ?
>> "lld" : "d";
>>               if (next_ptr[0] == '$') { // no dash format-tag
>>                   snprintf(format_tag, format_tag_size, "%%%s",
>> number_format);
>>                   *ptr = &next_ptr[1];
>>
>>
> Ok.
>
> _______________________________________________
> libav-devel mailing list
> [email protected]
> https://lists.libav.org/mailman/listinfo/libav-devel
>
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to