diff mbox

[FFmpeg-devel,4/4] lavf/movdec: request probing for an ambiguous codec tag

Message ID 20171019073948.23683-4-rodger.combs@gmail.com
State Withdrawn, archived
Headers show

Commit Message

Rodger Combs Oct. 19, 2017, 7:39 a.m. UTC
---
 libavformat/isom.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Jan Ekström Oct. 19, 2017, 8:18 a.m. UTC | #1
On Thu, Oct 19, 2017 at 10:39 AM, Rodger Combs <rodger.combs@gmail.com> wrote:
> ---
>  libavformat/isom.c | 2 ++
>  1 file changed, 2 insertions(+)

This change makes sense due to the ambiguousness of the container mapping. LGTM.

Jan
diff mbox

Patch

diff --git a/libavformat/isom.c b/libavformat/isom.c
index 77983c5eaa..8b3f88ce74 100644
--- a/libavformat/isom.c
+++ b/libavformat/isom.c
@@ -519,6 +519,8 @@  FF_ENABLE_DEPRECATION_WARNINGS
     codec_id= ff_codec_get_id(ff_mp4_obj_type, object_type_id);
     if (codec_id)
         st->codecpar->codec_id = codec_id;
+    if (object_type_id == 0x6B) // This can be either MP3 or MP2; let probe_codec decide
+        st->request_probe = 5;
     av_log(fc, AV_LOG_TRACE, "esds object type id 0x%02x\n", object_type_id);
     len = ff_mp4_read_descr(fc, pb, &tag);
     if (tag == MP4DecSpecificDescrTag) {